/*
 * Agua Topone site-wide redesign — 2026-07-22
 *
 * A single, late-loaded visual system for the Astro static site. The design
 * keeps the reviewed POU/Technology direction: engineering-led hierarchy,
 * deep-water blues, restrained shadows, generous whitespace and one orange
 * conversion accent. Existing content, routes and functional JS remain intact.
 */

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("/wp-content/uploads/elementor/google-fonts/fonts/roboto-e9c93e18.woff2") format("woff2");
}

:root {
  --at-navy-950: #071a36;
  --at-navy-900: #0b2145;
  --at-navy-800: #123765;
  --at-blue-700: #2458a6;
  --at-blue-600: #306bb8;
  --at-blue-500: #3982c5;
  --at-cyan-500: #37a9e0;
  --at-cyan-100: #dff4fc;
  --at-orange-500: #ff7a1a;
  --at-orange-600: #e96308;
  --at-ink: #17263c;
  --at-body: #46566c;
  --at-muted: #6f7f94;
  --at-line: #dce6f1;
  --at-line-strong: #c8d8e8;
  --at-surface: #ffffff;
  --at-surface-soft: #f5f8fc;
  --at-surface-blue: #edf4fb;
  --at-container: min(1400px, calc(100% - clamp(32px, 6vw, 80px)));
  --at-page: min(1400px, calc(100% - clamp(32px, 6vw, 80px)));
  --at-reading: min(820px, calc(100% - 32px));
  --at-section-space: clamp(72px, 7vw, 108px);
  --at-radius-sm: 10px;
  --at-radius: 16px;
  --at-radius-lg: 24px;
  --at-shadow-sm: 0 10px 28px rgb(15 49 88 / 8%);
  --at-shadow: 0 18px 46px rgb(15 49 88 / 12%);
  --at-shadow-hover: 0 24px 58px rgb(15 49 88 / 17%);
  --at-focus: 0 0 0 3px rgb(55 169 224 / 42%);
  --site-content-width: 1400px;
}

html {
  scroll-padding-top: 88px;
}

body.site-body {
  min-width: 320px;
  color: var(--at-body);
  background: var(--at-surface);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-body ::selection {
  color: #fff;
  background: var(--at-blue-700);
}

body.site-body :where(h1, h2, h3, h4, h5, h6) {
  color: var(--at-ink);
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: -0.018em;
}

body.site-body :where(button, input, textarea, select) {
  font: inherit;
}

body.site-body :where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--at-cyan-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 3000;
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--at-navy-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------- */
/* Header and mega navigation                                                 */
/* -------------------------------------------------------------------------- */

.ch {
  z-index: 1200;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background:
    linear-gradient(100deg, rgb(7 26 54 / 98%) 0%, rgb(14 54 101 / 97%) 58%, rgb(31 92 157 / 96%) 100%);
  box-shadow: 0 10px 28px rgb(5 25 52 / 16%);
  backdrop-filter: blur(14px);
}

.ch__bar {
  max-width: 1400px;
  min-height: 76px;
  padding-inline: clamp(20px, 3vw, 36px);
  gap: 24px;
}

.ch__logo img {
  width: clamp(205px, 15vw, 248px);
}

.ch__nav {
  margin-left: auto;
}

.ch__menu {
  gap: 2px;
}

.ch__link {
  position: relative;
  min-height: 76px;
  padding: 26px clamp(10px, 1vw, 15px);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.ch__link::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--at-cyan-500);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ch__item.is-current > .ch__link::after,
.ch__item:hover > .ch__link::after,
.ch__item:focus-within > .ch__link::after {
  opacity: 1;
  transform: scaleX(1);
}

.ch__link:hover {
  color: #fff;
  opacity: 1;
  text-decoration: none;
}

.ch__caret {
  border-right-width: 4px;
  border-left-width: 4px;
  border-top-width: 5px;
  opacity: .75;
}

.ch__cta {
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid var(--at-orange-500);
  border-radius: 10px;
  color: #fff;
  background: var(--at-orange-500);
  box-shadow: 0 9px 22px rgb(255 122 26 / 22%);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ch__cta:hover,
.ch__cta:focus-visible {
  border-color: #fff;
  color: var(--at-navy-900);
  background: #fff;
  box-shadow: 0 12px 28px rgb(4 22 46 / 22%);
  text-decoration: none;
  transform: translateY(-1px);
}

.ch__panel {
  border-top: 1px solid rgb(255 255 255 / 12%);
  background:
    radial-gradient(circle at 85% -20%, rgb(55 169 224 / 24%), transparent 34%),
    linear-gradient(145deg, var(--at-navy-950), #123c70);
  box-shadow: 0 24px 48px rgb(4 21 45 / 30%);
}

.ch__panel-in {
  max-width: 1400px;
  padding: 30px clamp(24px, 4vw, 48px) 36px;
}

.ch__app {
  gap: 20px;
}

.ch__appcard {
  align-items: flex-start;
  padding: 26px 28px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
  text-align: left;
  background: rgb(255 255 255 / 6%);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ch__appcard:hover,
.ch__appcard:focus-visible {
  border-color: rgb(128 212 245 / 54%);
  background: rgb(255 255 255 / 10%);
  text-decoration: none;
  transform: translateY(-2px);
}

.ch__apptitle {
  margin-bottom: 10px;
  color: #8ed9f6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ch__appsub {
  margin-bottom: 8px;
  font-size: 19px;
}

.ch__appdesc {
  margin-bottom: 20px;
  color: rgb(255 255 255 / 77%);
  font-size: 14px;
  line-height: 1.58;
}

.ch__appicons {
  gap: 18px;
}

.ch__appicons img {
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 10px;
  background: rgb(255 255 255 / 9%);
}

.ch__prod {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0 28px;
  padding-left: 0;
}

.ch__tabs {
  gap: 8px;
}

.ch__tab {
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  text-align: left;
}

.ch__tab[aria-selected="true"] {
  border-color: rgb(128 212 245 / 70%);
  background: rgb(255 255 255 / 10%);
}

.ch__tabpanel {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.ch__prodgrid {
  gap: 12px;
}

.ch__prodcard {
  min-width: 0;
  padding: 14px 10px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.ch__prodcard:hover,
.ch__prodcard:focus-visible {
  border-color: rgb(128 212 245 / 35%);
  background: rgb(255 255 255 / 7%);
  text-decoration: none;
}

.ch__prodcard img {
  height: 116px;
  margin-bottom: 10px;
}

.ch__prodflow {
  margin-bottom: 4px;
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
}

.ch__prodname {
  font-size: 16px;
}

.ch__proddesc {
  border: 1px solid rgb(128 212 245 / 30%);
  border-radius: 14px;
  color: rgb(255 255 255 / 78%);
  background: rgb(255 255 255 / 6%);
  box-shadow: none;
  font-size: 14px;
}

.ch__news {
  gap: 14px;
  padding-top: 2px;
}

.ch__newslink {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 12px;
  background: rgb(255 255 255 / 6%);
  font-size: 14px;
  line-height: 1.35;
}

.ch__newslink:hover,
.ch__newslink:focus-visible {
  color: #fff;
  background: rgb(255 255 255 / 11%);
  opacity: 1;
  text-decoration: none;
}

.ch__sup {
  justify-content: center;
  gap: 18px;
}

.ch__supcard {
  width: min(280px, 38vw);
  min-height: 138px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 16px;
  background: rgb(255 255 255 / 7%);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ch__supcard:hover,
.ch__supcard:focus-visible {
  border-color: rgb(128 212 245 / 50%);
  outline: 0;
  background: rgb(255 255 255 / 11%);
  text-decoration: none;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */

.cf {
  --at-footer-muted: rgb(255 255 255 / 84%);
  --at-footer-accent: #d8f3ff;
  color: var(--at-footer-muted);
  background: #3062a9;
}

.cf__cta {
  padding: 0 clamp(18px, 4vw, 42px);
  background: linear-gradient(180deg, var(--at-surface-soft) 0%, var(--at-surface-soft) 50%, var(--at-navy-950) 50%);
}

.cf__cta-in {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(34px, 4vw, 52px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgb(55 169 224 / 35%), transparent 34%),
    linear-gradient(120deg, var(--at-blue-700), var(--at-navy-800));
  box-shadow: 0 22px 55px rgb(5 28 59 / 22%);
}

.cf__eyebrow {
  margin: 0 0 7px;
  color: var(--at-footer-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.cf__cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.18;
}

.cf__cta p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--at-footer-muted);
  font-size: 16px;
}

.cf__cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 7px;
  color: #fff;
  background: var(--at-orange-500);
  box-shadow: 0 12px 24px rgb(7 25 51 / 22%);
  font-size: 15px;
  font-weight: 800;
}

.cf__cta-button:hover,
.cf__cta-button:focus-visible {
  color: var(--at-navy-900);
  background: #fff;
  text-decoration: none;
}

.cf__main {
  max-width: 1400px;
  grid-template-columns: minmax(320px, 1.15fr) minmax(360px, 1fr) minmax(180px, .55fr);
  gap: clamp(46px, 6vw, 96px);
  padding: 72px clamp(28px, 5vw, 60px) 62px;
}

.cf__logo img {
  width: min(280px, 100%);
  margin-bottom: 14px;
}

.cf__tagline {
  max-width: 430px;
  margin: 0 0 22px;
  color: var(--at-footer-muted);
  font-size: 16px;
  line-height: 1.6;
}

.cf__social {
  gap: 9px;
  margin-bottom: 22px;
}

.cf__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 10px;
  color: #fff;
  background: rgb(255 255 255 / 8%);
}

.cf__social a:hover,
.cf__social a:focus-visible {
  color: var(--at-navy-900);
  background: #fff;
  text-decoration: none;
}

.cf__contact {
  color: var(--at-footer-muted);
  font-size: 16px;
  line-height: 1.72;
}

.cf__contact span {
  margin-right: 7px;
  color: var(--at-footer-accent);
  font-weight: 700;
}

.cf__head,
.cf__subhead {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
}

.cf__head {
  margin-bottom: 18px;
}

.cf__subhead {
  margin-bottom: 12px;
}

.cf__prodcols {
  gap: clamp(36px, 5vw, 72px);
}

.cf__col--products li,
.cf__col--about li {
  margin-bottom: 8px;
}

.cf__col--products li a,
.cf__col--about li a {
  color: var(--at-footer-muted);
  font-size: 16px;
}

.cf__col--products li a:hover,
.cf__col--about li a:hover,
.cf__subhead:hover {
  color: #fff;
}

.cf__legal {
  min-height: 58px;
  justify-content: space-between;
  padding: 14px max(28px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgb(255 255 255 / 16%);
  background: #3062a9;
}

.cf__legal p {
  color: rgb(255 255 255 / 84%);
  font-size: 13px;
  line-height: 1.5;
}

.cf__legal-links {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.cf__legal-links a {
  color: var(--at-footer-muted);
  font-size: 13px;
}

.ch-top {
  right: 18px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-color: var(--at-line);
  border-radius: 12px;
  color: var(--at-blue-700);
  box-shadow: var(--at-shadow-sm);
}

/* -------------------------------------------------------------------------- */
/* Converted-page design primitives                                           */
/* -------------------------------------------------------------------------- */

.pd {
  color: var(--at-body);
  background: var(--at-surface);
}

.pd > .x-sec.x-boxed > .x-in {
  padding-inline: clamp(20px, 4vw, 42px);
}

.pd :where(.x-text, .x-html) {
  line-height: 1.68;
}

.pd :where(.x-text, .x-html) p {
  color: inherit;
}

.pd :where(h1.x-h) {
  font-size: clamp(34px, 4.1vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.pd :where(h2.x-h) {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.027em;
  text-wrap: balance;
}

.pd :where(h3.x-h) {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.pd .x-btn {
  min-height: 48px;
  gap: 10px;
  padding: 13px 21px;
  border-color: var(--at-blue-700);
  border-radius: 10px;
  color: #fff;
  background: var(--at-blue-700);
  box-shadow: 0 10px 22px rgb(36 88 166 / 17%);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.pd .x-btn:hover,
.pd .x-btn:focus-visible {
  border-color: var(--at-blue-700);
  color: var(--at-blue-700);
  background: #fff;
  text-decoration: none;
}

.pd .x-img img {
  border-radius: inherit;
}

.pd .xt {
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: var(--at-radius);
  background: #fff;
  box-shadow: var(--at-shadow-sm);
}

.pd .xt__bar {
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--at-line);
  background: var(--at-surface-soft);
}

.pd .xt__tab {
  min-height: 48px;
  padding: 11px 18px;
  border: 0;
  border-radius: 9px;
  color: var(--at-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.pd .xt__tab[aria-selected="true"] {
  color: var(--at-blue-700);
  background: #fff;
  box-shadow: 0 5px 14px rgb(24 65 109 / 8%);
}

.pd .xt__panel {
  background: #fff;
}

.pd .x-accs {
  gap: 10px;
}

.pd .x-acc {
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 18px rgb(15 49 88 / 5%);
}

.pd .x-acc summary {
  min-height: 52px;
  padding: 14px 18px;
  border: 0;
  border-radius: 0;
  color: var(--at-ink);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.pd .x-acc summary::after {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  place-items: center;
  color: var(--at-blue-700);
  background: var(--at-surface-blue);
}

.pd .x-acc[open] summary {
  color: var(--at-blue-700);
  background: var(--at-surface-soft);
}

.pd .x-acc .x-accbody {
  padding: 0 18px 18px;
  color: var(--at-body);
  background: var(--at-surface-soft);
}

/* -------------------------------------------------------------------------- */
/* Application product carousel, ODM callout and reusable FAQ                 */
/* -------------------------------------------------------------------------- */

.pd-203 .pou-product-carousel {
  --e-n-carousel-swiper-slides-to-display: 3;
  --e-n-carousel-swiper-slides-gap: 24px;
  position: relative;
  min-width: 0;
}

.pd-203 .pou-product-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: 0 0 18px;
}

.pd-203 .pou-product-carousel__toolbar p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pd-203 .pou-product-carousel__buttons {
  display: flex;
  gap: 8px;
}

.pd-203 .pou-product-carousel .elementor-swiper-button {
  position: static;
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  place-items: center;
  color: var(--at-blue-700);
  background: #fff;
  box-shadow: 0 8px 20px rgb(7 26 54 / 16%);
  transform: none;
}

.pd-203 .pou-product-carousel .elementor-swiper-button:hover,
.pd-203 .pou-product-carousel .elementor-swiper-button:focus-visible {
  border-color: var(--at-orange-500);
  color: #fff;
  background: var(--at-orange-500);
}

.pd-203 .pou-product-carousel .elementor-swiper-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pd-203 .pou-product-carousel .e-n-carousel {
  width: 100%;
  min-width: 0;
}

.pd-203 .pou-product-carousel .pou-solutions__grid {
  display: flex;
  grid-template-columns: none;
  gap: var(--e-n-carousel-swiper-slides-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pd-203 .pou-product-carousel .pou-solutions__grid::-webkit-scrollbar {
  display: none;
}

.pd-203 .pou-product-carousel .swiper-slide {
  display: flex;
  height: auto;
  scroll-snap-align: start;
}

.pd-203 .pou-product-carousel .pou-product-card,
.pd-203 .pou-product-carousel .pou-product-card:last-child {
  grid-column: auto;
  width: 100%;
  height: 100%;
  justify-self: stretch;
}

.pd-203 .pe-1394a32,
.pd-138 .pe-202c164c {
  overflow: hidden;
  border-radius: var(--border-radius, 20px);
  box-shadow: var(--at-shadow-sm);
}

.application-faq {
  padding: clamp(68px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 0 50%, rgb(55 169 224 / 8%), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--at-surface-soft) 100%);
}

.application-faq__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.application-faq__header {
  width: min(100%, 780px);
  margin: 0 auto 34px;
  text-align: center;
}

.application-faq__eyebrow {
  margin: 0 0 8px;
  color: var(--at-blue-600);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.application-faq__header h2 {
  margin: 0 0 12px;
  color: var(--at-navy-900);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  text-wrap: balance;
}

.application-faq__header > p:last-child {
  margin: 0;
  color: var(--at-body);
  font-size: 17px;
  line-height: 1.6;
}

.pd .application-faq__list {
  gap: 12px;
}

.pd .application-faq__item {
  border-color: var(--at-line-strong);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgb(15 49 88 / 6%);
}

.pd .application-faq__item summary {
  min-height: 62px;
  gap: 18px;
  padding: 17px 20px;
  color: var(--at-ink);
  font-size: 17px;
  line-height: 1.45;
}

.pd .application-faq__item summary > span {
  min-width: 0;
}

.pd .application-faq__item[open] summary {
  color: var(--at-blue-700);
  background: var(--at-surface-blue);
}

.pd .application-faq__item .application-faq__answer {
  padding: 18px 22px 21px;
  color: var(--at-body);
  background: #fff;
}

.pd .application-faq__answer p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.72;
}

.pd .application-faq__answer a {
  color: var(--at-blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.application-faq__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--at-blue-700);
  font-size: 14px;
  font-weight: 800;
}

.application-faq__more:hover,
.application-faq__more:focus-visible {
  color: var(--at-orange-600);
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .pd-203 .pou-product-carousel {
    --e-n-carousel-swiper-slides-to-display: 2;
  }
}

@media (max-width: 767px) {
  .pd-203 .pou-product-carousel {
    --e-n-carousel-swiper-slides-to-display: 1;
  }

  .pd-203 .pou-product-carousel__toolbar {
    display: none;
  }

  .pd-203 .pou-product-carousel .e-n-carousel {
    display: block;
  }

  .pd-203 .pou-product-carousel .pou-solutions__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .pd-203 .pou-product-carousel .swiper-slide {
    width: 100% !important;
    scroll-snap-align: none;
  }

  .application-faq {
    padding: 58px 16px 64px;
  }

  .application-faq__header {
    margin-bottom: 28px;
  }

  .application-faq__header h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .application-faq__header > p:last-child {
    font-size: 16px;
  }

  .pd .application-faq__item summary {
    min-height: 58px;
    padding: 15px 16px;
    font-size: 15.5px;
  }

  .pd .application-faq__item .application-faq__answer {
    padding: 16px 17px 18px;
  }

  .pd .application-faq__answer p {
    font-size: 15px;
  }
}

.pd .x-html {
  scrollbar-color: var(--at-blue-500) var(--at-surface-blue);
}

.pd :where(.x-html, .x-text) table {
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: 12px;
  font-size: 14px;
}

.pd :where(.x-html, .x-text) table :is(th, td) {
  padding: 13px 14px;
  border-color: var(--at-line);
  vertical-align: middle;
}

.pd :where(.x-html, .x-text) table th {
  color: var(--at-navy-800);
  background: var(--at-surface-blue);
}

.pd .x-ibox {
  min-height: 62px;
  padding: 14px 17px;
  border: 1px solid var(--at-line);
  border-radius: 11px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pd .x-ibox:hover,
.pd .x-ibox:focus-visible {
  border-color: #91b9df;
  box-shadow: var(--at-shadow-sm);
  text-decoration: none;
  transform: translateY(-1px);
}

.pd .x-ibox .x-ibt {
  color: var(--at-ink);
  font-size: 15px;
}

.pd .elementor-form-fields-wrapper {
  gap: 12px 0;
}

.pd .elementor-field-group {
  padding-inline: 6px;
}

.pd .elementor-field-label {
  padding-bottom: 7px;
  color: var(--at-ink);
  font-size: 13px;
  font-weight: 700;
}

.pd .elementor-field,
.pd .elementor-select-wrapper,
.pd .elementor-select-wrapper select {
  min-height: 48px;
  border-color: var(--at-line-strong);
  border-radius: 10px;
  color: var(--at-ink);
  background: #fff;
  font-size: 15px;
}

.pd textarea.elementor-field {
  min-height: 128px;
  padding: 13px 15px;
}

.pd .elementor-field:focus,
.pd .elementor-select-wrapper:focus-within {
  border-color: var(--at-blue-500);
  box-shadow: var(--at-focus);
  outline: 0;
}

.pd .elementor-button {
  min-height: 50px;
  border-color: var(--at-orange-500);
  border-radius: 10px;
  color: #fff;
  background: var(--at-orange-500);
  font-size: 14px;
  font-weight: 800;
}

.pd .elementor-button:hover,
.pd .elementor-button:focus-visible {
  border-color: var(--at-orange-600);
  color: #fff;
  background: var(--at-orange-600);
}

/* -------------------------------------------------------------------------- */
/* Contact: a purpose-built technical project intake                          */
/* -------------------------------------------------------------------------- */

.contact-page {
  color: var(--at-body);
  background: var(--at-surface-soft);
}

.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgb(55 169 224 / 30%), transparent 30%),
    radial-gradient(circle at 8% 92%, rgb(48 107 184 / 34%), transparent 38%),
    linear-gradient(125deg, var(--at-navy-950), #123d72 66%, #195792);
}

.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgb(255 255 255 / 3%), 0 0 0 180px rgb(255 255 255 / 2%);
}

.contact-hero__inner,
.contact-workspace__inner {
  width: var(--at-container);
  margin-inline: auto;
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
}

.contact-eyebrow {
  margin: 0 0 12px;
  color: var(--at-blue-700);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .15em;
}

.contact-hero .contact-eyebrow {
  color: #8bd9f7;
}

.contact-hero h1 {
  max-width: 830px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.contact-hero__copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.contact-hero__cards {
  display: grid;
  gap: 12px;
}

.contact-hero__cards > :where(a, div) {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 14px;
  color: #fff;
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(10px);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.contact-hero__cards > a:hover,
.contact-hero__cards > a:focus-visible {
  border-color: rgb(139 217 247 / 55%);
  color: #fff;
  background: rgb(255 255 255 / 12%);
  text-decoration: none;
  transform: translateY(-2px);
}

.contact-hero__cards span {
  color: #8bd9f7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-hero__cards strong {
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 700;
}

.contact-workspace {
  padding: var(--at-section-space) 0 calc(var(--at-section-space) + 18px);
  background:
    linear-gradient(180deg, #f5f8fc 0%, #eef4fa 100%);
}

.contact-workspace__inner {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.contact-brief {
  position: sticky;
  top: 106px;
  padding-top: 8px;
}

.contact-brief h2,
.contact-form-card h2 {
  margin: 0;
  color: var(--at-ink);
  line-height: 1.15;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.contact-brief h2 {
  max-width: 560px;
  font-size: clamp(30px, 3vw, 43px);
}

.contact-brief > p:not(.contact-eyebrow) {
  max-width: 560px;
  margin: 17px 0 28px;
  color: var(--at-muted);
}

.contact-brief ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 15px 16px 15px 48px;
  border: 1px solid var(--at-line);
  border-radius: 12px;
  background: rgb(255 255 255 / 72%);
}

.contact-brief li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 17px;
  height: 17px;
  border: 5px solid var(--at-cyan-100);
  border-radius: 50%;
  background: var(--at-blue-600);
}

.contact-brief li strong {
  color: var(--at-ink);
  font-size: 15px;
}

.contact-brief li span {
  color: var(--at-muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-brief__note {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--at-cyan-500);
  border-radius: 0 11px 11px 0;
  background: var(--at-surface-blue);
}

.contact-brief__note strong {
  color: var(--at-ink);
}

.contact-brief__note p {
  margin: 4px 0 0;
  font-size: 14px;
}

.contact-brief__note a {
  color: var(--at-blue-700);
  font-weight: 700;
}

.contact-form-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--at-line);
  border-radius: var(--at-radius-lg);
  background: #fff;
  box-shadow: var(--at-shadow);
}

.contact-form-card h2 {
  font-size: clamp(32px, 3vw, 46px);
}

.contact-form-card__intro {
  margin: 12px 0 28px;
  color: var(--at-muted);
  font-size: 14px;
}

.inquiry-form {
  position: relative;
  margin: 0;
}

.inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.inquiry-form__field {
  min-width: 0;
}

.inquiry-form__field--wide {
  grid-column: 1 / -1;
}

.inquiry-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--at-ink);
  font-size: 13px;
  font-weight: 750;
}

.inquiry-form label span {
  color: var(--at-orange-600);
}

.inquiry-form :where(input, select, textarea) {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--at-line-strong);
  border-radius: 10px;
  color: var(--at-ink);
  background: #fff;
  box-shadow: 0 1px 1px rgb(15 49 88 / 2%);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form textarea {
  min-height: 154px;
  resize: vertical;
}

.inquiry-form :where(input, select, textarea):focus {
  border-color: var(--at-blue-500);
  box-shadow: var(--at-focus);
  outline: 0;
}

.inquiry-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.inquiry-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 52px;
  margin-top: 22px;
  padding: 14px 22px;
  border: 1px solid var(--at-orange-500);
  border-radius: 10px;
  color: #fff;
  background: var(--at-orange-500);
  box-shadow: 0 10px 24px rgb(255 122 26 / 20%);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.inquiry-form__submit:hover,
.inquiry-form__submit:focus-visible {
  border-color: var(--at-orange-600);
  background: var(--at-orange-600);
  transform: translateY(-1px);
}

.inquiry-form__submit:disabled {
  cursor: wait;
  opacity: .65;
}

.inquiry-form__privacy {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--at-muted);
  font-size: 12px;
  line-height: 1.55;
}

.inquiry-form__privacy a {
  color: var(--at-blue-700);
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* Home: clearer section hierarchy and consistent content cards               */
/* -------------------------------------------------------------------------- */

.pd--home :is(.pe-044152c, .pe-53f4c45, .pe-a306e44, .pe-aa15be0, .pe-90671ed, .pe-5ce2e21) {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
}

.pd--home .pe-044152c {
  background:
    radial-gradient(circle at 92% 10%, rgb(55 169 224 / 10%), transparent 28%),
    #fff;
}

.pd--home .pe-4816bf0 {
  isolation: isolate;
  background-color: #164b91;
}

.pd--home .pe-53f4c45 {
  background: #fff;
}

.pd--home .pe-aa15be0 {
  background-color: var(--at-surface-blue);
}

.pd--home .pe-90671ed {
  background:
    radial-gradient(circle at 12% 0%, rgb(55 169 224 / 17%), transparent 27%),
    linear-gradient(145deg, #164b91, #235fa8);
}

.pd--home .elementor-post__card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgb(4 27 59 / 18%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pd--home .elementor-post__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgb(4 27 59 / 25%);
}

.pd--home .pe-5ce2e21 {
  background: #fff;
}

/* -------------------------------------------------------------------------- */
/* Product catalogue: readable choices first, dense comparison second         */
/* -------------------------------------------------------------------------- */

.pd--catalog .pe-80602d3 {
  --padding-top: clamp(68px, 7vw, 96px);
  --padding-bottom: clamp(68px, 7vw, 96px);
  background:
    radial-gradient(circle at 83% 5%, rgb(55 169 224 / 28%), transparent 28%),
    linear-gradient(125deg, var(--at-navy-950), var(--at-blue-700));
}

.pd--catalog .pe-af27463 {
  max-width: 980px;
  margin-inline: auto;
  padding: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.04em;
}

.pd--catalog :is(.pe-0912265, .pe-fa4cffe, .pe-caa55f0, .pe-d79add6, .pe-352b75c) {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
}

.pd--catalog .pe-0912265 {
  background: #fff;
}

.pd--catalog .e-2069e90-4cf553e {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pd--catalog .e-2069e90-4cf553e > .e-flexbox-base {
  min-width: 0;
  min-height: 228px;
  justify-content: center;
  padding: 28px 22px;
  border: 1px solid var(--at-line);
  border-radius: 15px;
  background: var(--at-surface-soft);
  box-shadow: var(--at-shadow-sm);
}

.pd--catalog .e-2069e90-4cf553e .e-image-base {
  width: 60px;
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--at-cyan-100);
}

.pd--catalog .e-2069e90-4cf553e :is(.e-heading-base, .e-paragraph-base) {
  margin: 0;
}

.pd--catalog .e-2069e90-4cf553e .e-heading-base {
  color: var(--at-ink);
  font-size: 19px;
}

.pd--catalog .e-2069e90-4cf553e .e-paragraph-base {
  color: var(--at-muted);
  font-size: 14px;
  line-height: 1.55;
}

.pd--catalog .pe-fa4cffe {
  background: var(--at-surface-soft);
}

.pd--catalog .pe-63ee57a {
  margin-bottom: 8px;
  color: var(--at-ink);
}

.pd--catalog .pe-76cc892 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pd--catalog .pe-76cc892 > .x-con {
  width: auto;
  min-width: 0;
  padding: 0 26px 28px;
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--at-shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pd--catalog .pe-76cc892 > .x-con:hover {
  border-color: #9ec4e6;
  box-shadow: var(--at-shadow-hover);
  transform: translateY(-4px);
}

.pd--catalog .pe-76cc892 > .x-con > .x-img {
  width: calc(100% + 52px);
  max-width: none;
  margin-inline: -26px;
  padding: 24px;
  border-bottom: 1px solid var(--at-line);
  background: linear-gradient(145deg, #f0f6fc, #fff);
}

.pd--catalog .pe-76cc892 > .x-con > .x-img img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.pd--catalog .pe-76cc892 h3 {
  margin-top: 25px;
  color: var(--at-ink);
  font-size: 22px;
}

.pd--catalog .pe-76cc892 .x-text {
  min-height: 110px;
  color: var(--at-muted);
  text-align: left;
}

.pd--catalog .pe-205fb65 {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
  background-attachment: scroll;
}

.pd--catalog .pe-205fb65::before {
  background: var(--at-navy-950);
  opacity: .82;
}

.pd--catalog .e-2727d51-6392a97 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pd--catalog .e-2727d51-6392a97 > .e-flexbox-base {
  min-width: 0;
  min-height: 260px;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 16px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 18px 38px rgb(3 20 44 / 18%);
}

.pd--catalog .pe-caa55f0 {
  background: #fff;
}

.pd--catalog .pe-caa55f0 > .x-in {
  max-width: 1180px;
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid var(--at-line);
  border-radius: var(--at-radius-lg);
  background: var(--at-surface-soft);
}

.pd--catalog .pe-d79add6 {
  background: var(--at-surface-blue);
}

.pd--catalog #at-uv-options {
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--at-line);
  border-radius: var(--at-radius-lg);
  background: #fff;
  box-shadow: var(--at-shadow-sm);
}

.pd--catalog .pe-352b75c {
  background: #fff;
}

.pd--catalog .pe-352b75c > .x-in {
  max-width: 1260px;
}

.pd--catalog .at-filter-container {
  padding: 18px;
  border: 1px solid var(--at-line);
  border-radius: 14px;
  background: var(--at-surface-soft);
}

.pd--catalog .at-table-wrapper {
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: 14px;
  box-shadow: var(--at-shadow-sm);
}

.pd--catalog .at-table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.pd--catalog .at-custom-table {
  min-width: 980px;
}

/* -------------------------------------------------------------------------- */
/* Product details: one reusable engineering-document layout                  */
/* -------------------------------------------------------------------------- */

.pd--product-detail > .x-sec:first-child {
  --padding-top: clamp(54px, 6vw, 84px);
  --padding-bottom: clamp(70px, 7vw, 104px);
  background:
    radial-gradient(circle at 88% 3%, rgb(55 169 224 / 10%), transparent 24%),
    linear-gradient(180deg, #f5f8fc 0%, #fff 44%);
}

.pd--product-detail > .x-sec:first-child > .x-in {
  align-items: flex-start;
  gap: clamp(26px, 4vw, 52px);
}

.pd--product-detail > .x-sec:first-child > .x-in > .x-con:first-child {
  min-width: 0;
}

.pd--product-detail > .x-sec:first-child h1 {
  color: var(--at-ink);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 820;
  line-height: 1.08;
}

.pd--product-detail > .x-sec:first-child .x-img img,
.pd--product-detail > .x-sec:first-child .e-image-base img {
  border-radius: 14px;
}

.pd--product-detail .xt {
  margin-top: 28px;
}

.pd--product-detail .xt__panel {
  padding: clamp(24px, 4vw, 48px);
}

.pd--product-detail .xt__panel > :first-child {
  margin-top: 0;
}

.pd--product-detail :is(.table-container, .test-container) {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--at-line);
  border-radius: 13px;
  background: #fff;
}

.pd--product-detail :is(.param-table, .test-table) {
  min-width: 720px;
  margin: 0;
}

.pd--product-detail .x-con:has(> .x-ibox) {
  margin-top: 20px;
  padding-block: 8px;
  border-color: var(--at-line);
}

.pd--product-detail .x-con:has(> .x-ibox):first-of-type {
  margin-top: 42px;
}

.pd--product-detail .x-con:has(> .x-ibox) .x-ibox {
  width: 100%;
  max-width: none;
}

.pd--product-detail > .x-sec:first-child > .x-in > .x-con:last-child {
  overflow: hidden;
  border: 1px solid var(--at-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--at-shadow-sm);
}

.pd--product-detail > .x-sec:first-child > .x-in > .x-con:last-child > :where(.x-h, .x-accs, .x-btnwrap) {
  margin-inline: 16px;
}

/* -------------------------------------------------------------------------- */
/* Company, FAQ and Support: long pages with calm, scannable landmarks        */
/* -------------------------------------------------------------------------- */

.pd--company .pe-a0ee0ad {
  --min-height: clamp(680px, 80vh, 860px);
  isolation: isolate;
  background-position: center;
}

.pd--company .pe-a0ee0ad::before {
  content: none;
}

.pd--company .pe-a0ee0ad :where(h1, .x-text) {
  color: #fff;
  text-shadow: 0 2px 14px rgb(5 25 52 / 32%);
}

.pd--company .pe-11e6ca0,
.pd--company .pe-3e9877b {
  --min-height: clamp(620px, 72vh, 780px);
}

.pd--company .pe-11e6ca0::before,
.pd--company .pe-3e9877b::before {
  content: none;
}

.pd--company .pe-11e6ca0 > *,
.pd--company .pe-3e9877b > * {
  position: relative;
}

.pd--company .pe-11e6ca0 :where(h2, .x-text) {
  color: #fff;
  text-shadow: 0 2px 14px rgb(5 25 52 / 32%);
}

.pd--company .pe-0245b49 {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
  background:
    radial-gradient(circle at 90% 0%, rgb(55 169 224 / 15%), transparent 28%),
    var(--at-navy-900);
}

.pd--company .pe-0245b49 > .x-in {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.pd--company .pe-0245b49 > .x-in > .x-con {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 17px;
  background: rgb(255 255 255 / 7%);
}

.pd--company .pe-0245b49 :where(h2, .x-text) {
  color: #fff;
}

.pd--company .pe-0245b49 .x-img img {
  border-radius: 13px;
}

.pd--company .pe-9a74c62 {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
  background: #fff;
}

.pd--company .pe-1e8b4b5 {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
  background: linear-gradient(145deg, #164b91, #245fa8);
}

.pd--company .elementor-post__card {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 14px 34px rgb(5 27 57 / 20%);
}

.pd--faq .pe-babc5af {
  --padding-top: clamp(70px, 8vw, 110px);
  --padding-bottom: clamp(70px, 8vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgb(55 169 224 / 28%), transparent 29%),
    linear-gradient(125deg, var(--at-navy-950), var(--at-blue-700));
}

.pd--faq .pe-babc5af :where(h1, .x-text) {
  max-width: 900px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.pd--faq .pe-7bd2103 {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
  background: var(--at-surface-soft);
}

.pd--faq .pe-7bd2103 > .x-in {
  max-width: 980px;
  gap: 22px;
}

.pd--faq .pe-7bd2103 > .x-in > .x-con {
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--at-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--at-shadow-sm);
}

.pd--faq .pe-7bd2103 > .x-in > .x-con > h2 {
  margin: 0 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--at-line);
  color: var(--at-ink);
  font-size: clamp(26px, 3vw, 36px);
}

.pd--faq .pe-7bd2103 > .x-in > .x-con > h3 {
  position: relative;
  margin: 24px 0 8px;
  padding-left: 24px;
  color: var(--at-blue-700);
  font-size: 18px;
  line-height: 1.38;
}

.pd--faq .pe-7bd2103 > .x-in > .x-con > h3::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 3px solid var(--at-cyan-100);
  border-radius: 50%;
  background: var(--at-blue-600);
}

.pd--faq .pe-7bd2103 > .x-in > .x-con > .x-text {
  padding-left: 24px;
  color: var(--at-body);
}

.pd--faq .pe-7bd2103 .elementor-widget-divider {
  display: none;
}

.pd--support .pe-918cffc {
  --padding-top: clamp(82px, 9vw, 124px);
  --padding-bottom: clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 86% 10%, rgb(55 169 224 / 28%), transparent 28%),
    linear-gradient(125deg, var(--at-navy-950), var(--at-blue-700));
}

.pd--support .pe-918cffc :where(h1, .x-text) {
  max-width: 850px;
  color: #fff;
}

.pd--support :is(.pe-8f7fdb2, .pe-59cbfbe, .pe-f9d97c9, .pe-6c7ebac, .pe-25d2e30, .pe-558b1c6, .pe-1b908c6) {
  --padding-top: var(--at-section-space);
  --padding-bottom: var(--at-section-space);
}

.pd--support :is(.pe-59cbfbe, .pe-6c7ebac, .pe-558b1c6) {
  background: var(--at-surface-soft);
}

.pd--support :is(.pe-8f7fdb2, .pe-59cbfbe, .pe-f9d97c9, .pe-6c7ebac, .pe-25d2e30, .pe-558b1c6) > .x-in {
  max-width: 1080px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--at-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--at-shadow-sm);
}

.pd--support :is(.pe-8f7fdb2, .pe-59cbfbe, .pe-f9d97c9, .pe-6c7ebac, .pe-25d2e30, .pe-558b1c6) > .x-in > h2:first-child {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--at-line);
  color: var(--at-ink);
}

.pd--support .pe-f9d97c9 > .x-in {
  border-color: #f2c7a8;
  background: #fffaf6;
}

.pd--support .pe-1b908c6 {
  background: var(--at-navy-900);
}

.pd--support .pe-1b908c6 > .x-in {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pd--support .pe-1b908c6 > .x-in > h2 {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
}

.pd--support .pe-1b908c6 > .x-in > .x-con {
  min-width: 0;
}

.pd--support .pe-1b908c6 .pe-d04a383 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.pd--support .pe-1b908c6 .pe-d04a383 > .x-con {
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 15px;
  background: rgb(255 255 255 / 8%);
}

.pd--support .pe-1b908c6 .pe-d04a383 > .x-con :where(h2, .x-text) {
  color: #fff;
}

.pd--support .x-video {
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 1180px) {
  .ch__bar {
    gap: 14px;
  }

  .ch__logo img {
    width: 198px;
  }

  .ch__link {
    padding-inline: 9px;
    font-size: 14px;
  }

  .cf__main {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 1fr) minmax(160px, .55fr);
    gap: 40px;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .cf__legal {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 72px;
  }

  .ch__bar {
    min-height: 66px;
    padding-inline: 18px;
  }

  .ch__logo img {
    width: 190px;
  }

  .ch__burger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 10px;
  }

  .ch__burger span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .ch__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .ch__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .ch__nav {
    max-height: calc(100dvh - 68px);
    padding: 12px 14px 28px;
    color: var(--ch-ink);
    background: #fff;
  }

  .ch__item {
    border-bottom: 1px solid var(--ch-line);
    text-align: left;
  }

  .ch__item--dd {
    justify-content: space-between;
  }

  .ch__link {
    min-height: 52px;
    justify-content: flex-start;
    padding: 14px 8px;
    color: var(--ch-navy);
    font-size: 16px;
  }

  .ch__link::after {
    display: none;
  }

  .ch__subtoggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ch-blue-deep);
    background: var(--ch-soft);
  }

  .ch__panel {
    margin: 0 0 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .ch__panel-in {
    padding: 8px;
    background: var(--ch-soft);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .ch__appcard {
    padding: 18px;
  }

  .ch__appdesc {
    display: block;
    font-size: 13px;
  }

  .ch__tabs {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .ch__tab {
    flex: 0 0 auto;
    text-align: center;
  }

  .ch__news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ch__newslink {
    text-align: left;
  }

  .ch__cta--m {
    margin-top: 18px;
  }

  .cf__cta-in {
    align-items: flex-start;
  }

  .cf__main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 44px;
    padding: 62px 28px 54px;
  }

  .cf__col--about {
    grid-column: 2;
  }

  .cf__legal {
    padding-inline: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --at-container: calc(100% - 32px);
    --at-page: calc(100% - 32px);
    --at-section-space: 62px;
  }

  body.site-body {
    font-size: 16px;
  }

  .ch__app {
    gap: 12px;
  }

  .ch__appdesc,
  .ch__appicons,
  .ch__proddesc {
    display: none;
  }

  .ch__prodgrid {
    gap: 10px;
  }

  .ch__prodcard {
    padding: 10px 6px 12px;
  }

  .ch__prodcard img {
    height: 84px;
  }

  .ch__news {
    grid-template-columns: 1fr;
  }

  .ch__supcard {
    width: 50%;
    min-height: 112px;
  }

  .cf__cta {
    padding-inline: 14px;
  }

  .cf__cta-in {
    display: block;
    padding: 32px 22px;
    border-radius: 16px;
  }

  .cf__cta h2 {
    font-size: 27px;
  }

  .cf__cta p:last-child {
    font-size: 15px;
  }

  .cf__cta-button {
    width: 100%;
    margin-top: 24px;
  }

  .cf__main {
    display: flex;
    gap: 34px;
    padding: 52px 20px 48px;
  }

  .cf__prodcols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .cf__legal {
    min-height: auto;
    gap: 14px;
    padding: 20px;
  }

  .cf__legal p {
    line-height: 1.5;
  }

  .cf__legal-links {
    gap: 14px;
  }

  .ch-top {
    right: 12px;
    bottom: 16px;
  }

  .pd > .x-sec.x-boxed > .x-in {
    padding-inline: 18px;
  }

  .pd :where(h1.x-h) {
    font-size: clamp(31px, 9vw, 40px);
  }

  .pd :where(h2.x-h) {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .pd .xt {
    border-radius: 13px;
  }

  .pd .xt__bar {
    display: none;
  }

  .pd .xt__mobile {
    min-height: 52px;
    padding: 13px 16px;
    border: 0;
    border-bottom: 1px solid var(--at-line);
    color: var(--at-ink);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
  }

  .pd .xt__mobile[aria-expanded="true"] {
    color: var(--at-blue-700);
    background: var(--at-surface-soft);
  }

  .pd .elementor-col-50,
  .pd .elementor-col-33,
  .pd .elementor-col-25,
  .pd .elementor-col-66 {
    width: 100%;
  }

  .pd :where(.x-html, .x-text) table {
    min-width: 680px;
  }

  .pd :where(.x-html, .x-text) {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .pd :where(.x-html, .x-text):has(table) {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
}

@media (max-width: 1100px) {
  .contact-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 42px;
  }

  .contact-workspace__inner {
    grid-template-columns: minmax(280px, .75fr) minmax(450px, 1.25fr);
    gap: 34px;
  }

  .pd--catalog .e-2069e90-4cf553e {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd--catalog .pe-76cc892 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd--catalog .pe-76cc892 > .x-con:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .pd--product-detail > .x-sec:first-child > .x-in {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .pd--product-detail > .x-sec:first-child > .x-in > .x-con:last-child {
    position: static;
    width: 100%;
    --width: 100%;
  }

  .pd--support .pe-1b908c6 > .x-in {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd--support .pe-1b908c6 .pe-d04a383 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd--support .pe-1b908c6 .pe-d04a383 > .x-con:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .contact-hero__inner,
  .contact-workspace__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-hero__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-hero__cards > :where(a, div) {
    padding: 17px 18px;
  }

  .contact-hero__cards strong {
    font-size: 15px;
  }

  .contact-brief {
    position: static;
  }

  .pd--company .pe-0245b49 > .x-in {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 62px 0 68px;
  }

  .contact-hero__inner {
    gap: 32px;
  }

  .contact-hero h1 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .contact-hero__copy > p:last-child {
    font-size: 16px;
  }

  .contact-hero__cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-workspace {
    padding: 60px 0 70px;
  }

  .contact-workspace__inner {
    gap: 34px;
  }

  .contact-brief h2 {
    font-size: 31px;
  }

  .contact-form-card {
    padding: 25px 20px;
    border-radius: 17px;
  }

  .contact-form-card h2 {
    font-size: 32px;
  }

  .inquiry-form__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  .inquiry-form__field--wide {
    grid-column: auto;
  }

  .inquiry-form__submit {
    width: 100%;
  }

  .pd--home :is(.pe-044152c, .pe-53f4c45, .pe-a306e44, .pe-aa15be0, .pe-90671ed, .pe-5ce2e21) {
    --padding-top: 58px;
    --padding-bottom: 58px;
  }

  .pd--catalog .pe-80602d3 {
    --padding-top: 58px;
    --padding-bottom: 58px;
  }

  .pd--catalog .pe-af27463 {
    padding: 0;
    font-size: 38px;
  }

  .pd--catalog :is(.pe-0912265, .pe-fa4cffe, .pe-caa55f0, .pe-d79add6, .pe-352b75c) {
    --padding-top: 58px;
    --padding-bottom: 58px;
    --padding-left: 0px;
    --padding-right: 0px;
  }

  .pd--catalog .e-2069e90-4cf553e,
  .pd--catalog .pe-76cc892,
  .pd--catalog .e-2727d51-6392a97 {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .pd--catalog .e-2069e90-4cf553e > .e-flexbox-base {
    min-height: 0;
    padding: 24px 20px;
  }

  .pd--catalog .pe-76cc892 > .x-con,
  .pd--catalog .pe-76cc892 > .x-con:last-child {
    grid-column: auto;
    width: 100%;
    padding-inline: 20px;
  }

  .pd--catalog .pe-76cc892 > .x-con > .x-img {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .pd--catalog .pe-76cc892 > .x-con > .x-img img {
    height: 210px;
  }

  .pd--catalog .pe-76cc892 .x-text {
    min-height: 0;
  }

  .pd--catalog .e-2727d51-6392a97 > .e-flexbox-base {
    min-height: 220px;
    padding: 24px 20px;
  }

  .pd--catalog .pe-caa55f0 > .x-in,
  .pd--catalog #at-uv-options {
    padding: 24px 18px;
    border-radius: 15px;
  }

  .pd--catalog .at-filter-container {
    padding: 14px;
  }

  .pd--catalog .at-custom-table {
    min-width: 820px;
  }

  .pd--product-detail > .x-sec:first-child {
    --padding-top: 42px;
    --padding-bottom: 66px;
    --padding-left: 0px;
    --padding-right: 0px;
  }

  .pd--product-detail > .x-sec:first-child h1 {
    font-size: 35px;
  }

  .pd--product-detail .xt__panel {
    padding: 20px 16px;
  }

  .pd--product-detail :is(.param-table, .test-table) {
    min-width: 640px;
  }

  .pd--company .pe-a0ee0ad {
    --min-height: 620px;
    --padding-top: 42px;
    --padding-bottom: 160px;
  }

  .pd--company .pe-11e6ca0,
  .pd--company .pe-3e9877b {
    --min-height: 560px;
    --padding-top: 54px;
    --padding-bottom: 54px;
  }

  .pd--company .pe-0245b49,
  .pd--company .pe-9a74c62,
  .pd--company .pe-1e8b4b5 {
    --padding-top: 58px;
    --padding-bottom: 58px;
    --padding-left: 0px;
    --padding-right: 0px;
  }

  .pd--company .pe-0245b49 > .x-in > .x-con {
    padding: 22px 18px;
  }

  .pd--faq .pe-babc5af {
    --padding-top: 62px;
    --padding-bottom: 62px;
  }

  .pd--faq .pe-7bd2103 {
    --padding-top: 58px;
    --padding-bottom: 58px;
    --padding-left: 0px;
    --padding-right: 0px;
  }

  .pd--faq .pe-7bd2103 > .x-in > .x-con {
    padding: 25px 20px;
    border-radius: 14px;
  }

  .pd--faq .pe-7bd2103 > .x-in > .x-con > h3,
  .pd--faq .pe-7bd2103 > .x-in > .x-con > .x-text {
    padding-left: 20px;
  }

  .pd--support .pe-918cffc {
    --padding-top: 64px;
    --padding-bottom: 64px;
  }

  .pd--support :is(.pe-8f7fdb2, .pe-59cbfbe, .pe-f9d97c9, .pe-6c7ebac, .pe-25d2e30, .pe-558b1c6, .pe-1b908c6) {
    --padding-top: 58px;
    --padding-bottom: 58px;
    --padding-left: 0px;
    --padding-right: 0px;
  }

  .pd--support :is(.pe-8f7fdb2, .pe-59cbfbe, .pe-f9d97c9, .pe-6c7ebac, .pe-25d2e30, .pe-558b1c6) > .x-in {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .pd--support .pe-1b908c6 > .x-in {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .pd--support .pe-1b908c6 .pe-d04a383 {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .pd--support .pe-1b908c6 .pe-d04a383 > .x-con,
  .pd--support .pe-1b908c6 .pe-d04a383 > .x-con:last-child {
    grid-column: auto;
    width: 100%;
  }

  .pd:is(.pd-5247, .pd-281) :where(.x-html, .x-text) table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .pd:is(.pd-5247, .pd-281) :where(.x-html, .x-text) table :is(th, td) {
    padding: 9px 6px;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.35;
  }

  .pd-5247 .x-hotspot-tooltip,
  .pd-5247 .x-hotspot-point--compact .x-hotspot-tooltip,
  .pd-5247 .x-hotspot-point--natural .x-hotspot-tooltip {
    position: fixed;
    z-index: 1300;
    inset: auto 16px 16px;
    width: auto;
    max-width: none;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    transform: none;
    box-shadow: 0 20px 54px rgb(4 21 45 / 34%);
  }

  .pd.pd-5247 .x-hotspot-point.x-hotspot-point .x-hotspot-tooltip {
    position: fixed;
    inset: auto 16px 16px;
    width: auto;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* One desktop grid: every page-level shell uses the same 1400px ceiling.     */
/* Full-bleed section backgrounds remain full width; readable copy may stay    */
/* narrower inside the shared shell.                                           */
/* -------------------------------------------------------------------------- */

@media (min-width: 1181px) {
  :is(
    .ch__bar,
    .ch__panel-in,
    .cf__cta-in,
    .cf__main,
    .contact-hero__inner,
    .contact-workspace__inner,
    .arc .arc__introin,
    .arc__crumbin,
    .arc__postsinner,
    .arc__morecatsinner,
    .ar__wrap,
    .ar__postnav,
    main.site-main
  ) {
    width: min(var(--site-content-width, 1400px), calc(100% - 40px));
    max-width: none;
    margin-inline: auto;
  }

  .pd > .x-sec.x-boxed > .x-in {
    width: min(var(--site-content-width, 1400px), calc(100% - 40px));
    max-width: none;
    margin-inline: auto;
  }

  .pd--company .pe-11e6ca0 > .pe-bbdb4a9 > .x-in,
  .pd--company .pe-3e9877b > :is(.pe-7365180, .pe-5adccee) > .x-in {
    width: min(var(--site-content-width, 1400px), calc(100% - 40px));
    max-width: none;
    margin-inline: auto;
    padding-inline: 42px;
  }

  .ar__cols {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    justify-content: stretch;
  }

  .cf__legal {
    padding-inline: max(20px, calc((100vw - var(--site-content-width, 1400px)) / 2));
  }

  main.site-main > :is(.page-header, .page-content) {
    width: min(100%, 920px);
    margin-inline: auto;
  }
}

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