html {
  scroll-behavior: smooth;
}
.one-container.single-product .site-content {
  padding: 0px 0px 0 0px;
}
#related-solutions-3 {
  padding-bottom: 70px;
}
h3.block-title,
.overview-highlights .overview h3,
.overview-highlights .highlights h3 {
  font-size: 4rem;
  font-size: clamp(1rem, 1rem + 1.2vw, 4rem);
}
.product-template-default .grid-container,
.single-product .block-middle_banner_block,
.single-product .block-gallery_block,
.single-product .block-form_block {
  max-width: 100%;
  padding: 0px;
}

.overview-product-nav {
  transition:
    background-color 0.1s ease,
    max-width 0.1s ease;
  will-change: background-color, max-width;
}

.product-nav ul,
.logos-list,
.block-icon_blocks .icon-blocks,
.overview-highlights,
.external-logos,
.related-solutions {
  display: flex;
  list-style: none;
}

.product-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.product-nav ul li {
  position: relative;
}

.product-nav ul li a {
  text-decoration: none;
  color: #000000;
  padding: 5px 20px;
  display: inline-block;
  position: relative;
  transition:
    color 0.2s ease,
    font-variation-settings 0.2s ease;
  font-size: 1.4rem;
}

.overview-product-nav .product-nav ul li a {
  font-size: 1.4rem;
}

.product-nav ul li a.active,
.product-nav ul li a:hover {
  border-color: var(--global-color-blue);
  border: 1px solid var(--global-color-blue);
  border-radius: 20px;
}

/* bottom border line */
.product-nav ul li a::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* thickness of border */
  background: var(--iai-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* animate border on hover */
.product-nav ul li a:hover::after {
  display: none;
  transform: scaleX(1);
}

.product-main .box-padding {
  padding: var(--element-box-padding);
  padding-right: 10%;
}

.product-main .overview {
  padding-left: 13px;
}

.product-main .overview h3 {
  color: #000;
}

.product-main .highlights {
  padding-left: 50px;
}

.product-main .block-icon_blocks,
.block-faq_block,
.block-form_block {
  padding: var(--section-padding);
}

.block-related_solutions {
  padding-bottom: 6rem;
}

.overview-highlights {
  --gutter: max(0px, calc((100vw - var(--content-width)) / 2));
}

.overview-highlights-inner {
  /* your existing layout bits */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--bar-gap);
  flex-wrap: nowrap;
  /* key alignment */
  margin-left: var(--gutter);
  margin-right: 0;
  /* make it fill the rest of the row to the right */
  width: calc(100% - var(--gutter));
  /* ensure max-width doesn't cap it short */
  max-width: none;
}

.overview-highlights > div > div {
  width: 50%;
}

.overview-highlights .overview h3 {
  color: #000;
}

.overview-highlights .highlights,
.block-form_block {
  color: var(--global-color-blue);
}

.overview-highlights .highlights ul {
  padding-left: 0;
}

.overview-highlights .highlights li {
  position: relative;
  margin-left: -36px;
  margin-bottom: 10px;
}

.overview-highlights .highlights h3 {
  color: var(--global-color-blue);
}

.content-container.external-logos {
  max-width: 100%;
  background: var(--light-background);
  padding: 1.5rem 0px;
  padding: 20px;
}

.external-logos .external-logos-intro {
  padding: 0 2rem;
  font-weight: 600;
  color: #000000;
}

.external-logos .external-logos-intro p {
  margin: 0;
}

.external-logos .external-logos-intro h3 strong {
  color: var(--global-color-blue);
}

.external-logos .logos-list {
  margin: 0em;
  align-items: center;
}

/* ===== Icon blocks: 3 columns (flex) ===== */
.icon-blocks {
  --gap: 24px;
  --pad: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch; /* equal heights per row */
}

.icon-blocks .icon-block {
  flex: 0 1 calc((100% - (2 * var(--gap))) / 3); /* 3 cols */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: var(--pad);
  border-radius: 12px;
  background: #f7f8fb; /* optional */
}

/* Image: centered & tidy */
.icon-blocks .icon-block img {
  display: block;
  width: 84px; /* tweak as needed */
  height: 84px;
  object-fit: contain;
  margin-inline: auto;
}

/* Typography */
.icon-blocks .icon-block h4 {
  margin: 10px 0 6px;
  font-size: 2.05rem;
  line-height: 1.25;
}

.icon-blocks .icon-block p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: Rajdhani, sans-serif !important;
}

section#technical-details-1,
section#values-benefits-0 {
  padding-top: 20px;
}
/* ===== masonary gallery ===== */

/* Make gallery tiles clickable for Fancybox */
.block-gallery_block .gallery-block .tile a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.block-gallery_block .gallery-block .tile a img {
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.block-gallery_block .gallery-block .tile a:hover img {
  transform: scale(1.05);
}

/* Gallery caption overlay */
.block-gallery_block .gallery-block .tile {
  position: relative;
}

.block-gallery_block .gallery-block .tile a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.block-gallery_block .gallery-block .tile a .gallery-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    transparent 100%
  );
  color: #fff;
  padding: 40px 15px 15px;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
  font-weight: 500;
}

.block-gallery_block .gallery-block .tile a:hover .gallery-caption-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Gallery Slider (Slick) ===== */
.gallery-slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.block-gallery_block .gallery-slider-wrapper {
  margin-top: 20px;
  margin-bottom: 60px;
}

.gallery-slider {
  position: relative;
  width: 100%;
}

.gallery-slide {
  position: relative;
  outline: none;
}

.gallery-slide a {
  display: block;
  position: relative;
  width: fit-content;
  cursor: pointer;
  margin: 0 auto;
  max-height: 500px;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  width: auto;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  color: #fff;
  padding: 20px 15px 15px;
  font-size: 1rem;
  line-height: 1.4;
  pointer-events: none;
}

/* Navigation arrows */
.gallery-slider-arrow,
.gallery-slider-arrow:focus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--global-color-blue, #193c8c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    opacity 0.15s ease,
    transform 0.15s ease;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.gallery-slider-arrow:hover {
  background: rgba(25, 60, 140, 0.9);
}

.gallery-slider-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* Default positions; JS updates these to sit on the image edges when slider is initialized */
.gallery-slider-prev {
  left: 15px;
  right: auto;
}

.gallery-slider-next {
  left: auto;
  right: 15px;
}

.gallery-slider-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Slick dots customization */
.gallery-slider-wrapper .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.gallery-slider-wrapper .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.gallery-slider-wrapper .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-slider-wrapper .slick-dots li button:hover,
.gallery-slider-wrapper .slick-dots li.slick-active button {
  background: var(--global-color-blue, #193c8c);
  transform: scale(1.2);
}

.gallery-slider-wrapper .slick-dots li button:before {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .gallery-slider-prev {
    left: 10px;
  }

  .gallery-slider-next {
    right: 10px;
  }

  .gallery-slider-wrapper .slick-dots {
    bottom: 15px;
  }
}

/*



#ug-tiles-nested, #ug-tiles-nested .ug-tiles-wrapper { margin:0 !important; }

html[dir="rtl"] #ug-tiles-nested .ug-textpanel-title { text-align: right; }
html[dir="rtl"] #ug-tiles-nested .ug-textpanel-description { text-align: right; }

#ug-tiles-nested .ug-textpanel-bg { opacity: 0.55 !important; }




.gallery-block figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0,0,0,.45); 
  pointer-events: none;
}
*/

/* HERO WRAPPER */
.product-hero#hero {
  position: relative;
  min-height: 70vh; /* tall, immersive */
  overflow: hidden;
  isolation: isolate; /* contain stacking contexts */
  padding-top: 70px;
}

/* BACKGROUND IMAGE LAYER */
.product-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cover the entire hero */
  display: block;
}

/* DEFAULT BANNER (when no hero image) */
.product-hero .hero-image.default-banner {
  background: var(--global-color-blue, #1c48f0);
}

/* HERO VIDEO SUPPORT */
.product-hero .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0; /* same layer as hero image */
  overflow: hidden;
}

.product-hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile/Desktop video visibility */
.product-hero .hero-video-mobile {
  display: block;
}

.product-hero .hero-video-desktop {
  display: none;
}

@media (min-width: 768px) {
  .product-hero .hero-video-mobile {
    display: none;
  }

  .product-hero .hero-video-desktop {
    display: block;
  }
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.55) 30%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

/* TEXT LAYER */
/*
.product-hero .hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 24px 16px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  z-index: 3;
  width: min(var(--content-width), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-top: 10rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
}
*/
/* TITLES */

.banner-content {
  z-index: 99999;
  position: absolute;
  display: flex;
  width: var(--content-width);
  margin: 0 auto;
  bottom: 45px;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.hero-text-new {
  max-width: 50%;
}
.product-hero .hero-title {
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 0px;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.35);
}

.product-hero .hero-subtitle {
  font-size: 2.8rem;
  margin: 0 0 25px;
  line-height: 1;
  color: #fff;
}

/* CTAs */
.product-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
  /* left-align the buttons */
  justify-content: flex-start;
  align-items: center;
  /* in case something centered this block */
  margin-left: auto;
  margin-right: 0;
}
.product-hero .hero-ctas a {
  display: inline-block;
  background: transparent; /* transparent background */
  color: #fff;
  border: 2px solid #fff; /* white border */
  padding: 0.25rem 1.1rem; /* comfy padding */
  text-decoration: none;
  border-radius: 0; /* square corners */
  font-weight: 600;
  letter-spacing: 0.02em;
  height: auto;
  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}
.product-hero .hero-ctas a:hover,
.product-hero .hero-ctas a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

/* Hide video-popup until page is fully loaded */
.product-hero .hero-ctas a#video-popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-hero .hero-ctas a#video-popup.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.product-hero .hero-ctas a#video-popup.is-ready:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.product-hero .hero-ctas a#video-popup::after {
  content: "";
  width: 12px;
  height: 14px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath d='M0 0 L0 14 L12 7 Z' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 7px;
  transform: translateY(1px);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.product-hero .hero-ctas a#video-popup:hover::after {
  transform: translateY(1px) translateX(3px);
}

.product-hero .hero-ctas a.btn-primary {
  background: var(--global-color-blue);
  color: #fff;
  border: 2px solid var(--global-color-blue); /* white border */
}

.product-hero .hero-ctas a.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.product-hero .hero-ctas a.btn-primary::after {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/chevron-right.svg);
  margin-left: 5px;
  transform: translateY(3px);
  transition: transform 0.2s ease;
}

.product-hero .hero-ctas a.btn-primary:hover::after {
  transform: translateY(3px) translateX(3px);
}

.product-hero .hero-ctas a.btn-secondary.is-ready:hover {
  background: #fff;
  color: var(--global-color-blue);
  border-color: #fff;
}

/* Make the banner a positioning context */
.block-middle_banner_block .middle-banner {
  position: relative;
  width: 100%;
  min-height: clamp(660px, 65vh, 760px);
  overflow: hidden;

  /* Option A: center content vertically with grid */
  display: grid;
  align-items: center; /* vertical center for .middle-content */
}

/* Put the image behind everything and make it cover */
.block-middle_banner_block .middle-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0; /* behind */
  display: block;
  pointer-events: none; /* so clicks go to links in content */
}

/* Optional readability overlay on top of the image (behind content) */
.block-middle_banner_block .middle-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  z-index: 0; /* same layer as img */
  pointer-events: none;
}

/* CONTENT: sits over the image */
.block-middle_banner_block .middle-content {
  position: relative; /* above image/overlay */
  z-index: 1;
  justify-self: start; /* left-align within grid */

  max-width: var(--content-width);
  width: 100%;
  margin-inline: auto;
  padding: clamp(16px, 3vw, 32px);

  color: #fff;
  text-align: left;
}

/* Title and paragraph sizes/colors per your spec */
.block-middle_banner_block .middle-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.05;
}
.block-middle_banner_block .middle-content p {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.25;
}

/* Link as button */
.block-middle_banner_block .middle-content a {
  display: inline-block;
  background-color: var(--global-color-blue);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 1rem;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.block-middle_banner_block .middle-content a:hover,
.block-middle_banner_block .middle-content a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0.95;
}

/* FAQ */
.faq-block {
  --faq-accent: var(--global-color-blue, #0a58ca);
  --faq-border: rgba(0, 0, 0, 0.12);
  --faq-radius: 12px;
  --faq-pad: 1rem;
  --faq-open-max: 1000px; /* tuning knob for max content height */
  margin: 0 auto;
}

/* Each item */
.faq-item {
  border-bottom: 1px dotted var(--faq-accent);
  overflow: clip; /* smoother than hidden for anims */
  margin-bottom: 0.75rem;
}

/* hide radios (still accessible for labels) */
.faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Question row (click target) */
.faq-q {
  display: block;
  cursor: pointer;
  padding: calc(var(--faq-pad) + 0.25rem) var(--faq-pad);
  position: relative;
  line-height: 1.3;
  user-select: none;
}

.faq-q h4 {
  font-weight: 600;
}

/* Chevron */
.faq-q::after {
  content: "";
  position: absolute;
  right: var(--faq-pad);
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0.8;
}

/* Answer panel: smoother open/close */
.answer {
  max-height: 0;
  padding: 0 var(--faq-pad);
  color: #333;

  /* Smoothness: height + fade + slight slide */
  opacity: 0;
  transform: translateY(-4px);
  will-change: max-height, opacity, transform, padding;

  transition:
    max-height 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 0.45s ease,
    opacity 0.35s ease 0.06s,
    /* tiny delay to avoid pop */ transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.answer p {
  margin: 0.8rem 0;
}

/* OPEN STATE (using :has with checked radio) */
.faq-item:has(> .faq-toggle:checked) .answer {
  max-height: var(--faq-open-max);
  padding: 0 var(--faq-pad) var(--faq-pad);
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s, 0s; /* remove fade delay when opening */
}

.faq-item:has(> .faq-toggle:checked) .faq-q::after {
  transform: translateY(-50%) rotate(225deg); /* chevron up */
}

/* Hover/Focus styles */
.faq-q:hover {
  background: rgba(0, 0, 0, 0.03);
}
.faq-q:focus-within {
  outline: 2px solid var(--faq-accent);
  outline-offset: -2px;
}

/* Optional: divider between items when open */
.faq-item + .faq-item {
  margin-top: 0.5rem;
}

/* Optional accent on open */
.faq-item:has(> .faq-toggle:checked) {
  border-bottom: 1px dotted var(--faq-accent);
}

/* Progressive enhancement: clip-path wipe (even smoother if supported) */
@supports (clip-path: inset(0%)) {
  .answer {
    clip-path: inset(0 0 100% 0);
    transition:
      max-height 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
      padding 0.45s ease,
      opacity 0.35s ease 0.06s,
      transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
      clip-path 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .faq-item:has(> .faq-toggle:checked) .answer {
    clip-path: inset(0 0 0 0);
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .answer,
  .faq-q::after {
    transition: none;
  }
}

.related-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.related-product a {
  position: relative; /* needed for absolute <h4> */
  display: block;
  overflow: hidden;
}

.related-product img {
  display: block; /* removes inline-gap */
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* overlay title */
.related-product h4 {
  --overlay-pad: 0.85rem; /* tweak padding here */
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: var(--overlay-pad) calc(var(--overlay-pad) * 1.25);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
  /* make text readable on any image; remove if you don't want it */
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  /* or use text-shadow instead of gradient:
     text-shadow: 0 2px 8px rgba(0,0,0,.45); */
}

.related-product h4:after {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/chevron-right.svg);
  margin-left: 10px;

  /* 1. Initial hidden and shifted state */
  opacity: 0;
  transform: translateX(
    -5px
  ); /* Optional: start slightly left for a better "slide-in" effect */

  /* 2. Transition both properties (comma separated) */
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* 3. Reveal and move on hover */
.related-product:hover h4::after {
  opacity: 1;
  transform: translateX(3px);
}

/* optional: subtle hover lift */
.related-product a:hover h4,
.related-product a:focus h4 {
  /*transform: translateY(-2px); */
}

/* optional: keyboard focus ring on the card */
.related-product a:focus-visible {
  outline: 2px solid rgba(10, 88, 202, 0.8);
  outline-offset: 2px;
  border-radius: 12px;
}

/* ---------- Base layout ---------- */
.product-hero-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: 0;
  --bar-pad-y: 0px;
  --bar-pad-x: 20px;
  --bar-gap: 24px;
  --chip-gap: 10px;
  --text: #0b0b0b;
  --muted: rgba(0, 0, 0, 0.6);
  --accent: #ff7a00;
  color: var(--text);
  --gutter: max(0px, calc((100vw - var(--content-width)) / 2));
  /* smoothness */
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

.is-sticky-bar .product-hero-bar {
  transform: translateY(0%);
  position: fixed;
  top: 0px;
  z-index: 999;
  right: 0px;
  min-height: 100px;
  width: calc(100% - 120px) !important;
}

.product-template-default .product-hero-bar .hero-bar-inner {
  /*max-width: var(--content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bar-gap);
  flex-wrap: nowrap;
  margin: auto 0 auto auto;  
  border:1px solid #cccccc; */
  padding-inline: 0px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bar-gap);
  flex-wrap: nowrap;
  border: 1px solid #ccc;

  /* key alignment */
  margin-left: var(--gutter);
  margin-right: 0;

  /* make it fill the rest of the row to the right */
  width: calc(100% - var(--gutter));
  width: calc(var(--content-width) - 30px);

  /* ensure max-width doesn't cap it short */
  max-width: none;
}

.is-sticky-bar .product-hero-bar .hero-bar-inner {
  border: none;
  background-color: #ffffff;
  margin-left: initial;
  width: 100%;
}

.neo-search-wrapper,
.header-logo {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.is-sticky-bar .neo-search-wrapper {
  opacity: 0;
  transform: translateY(-10px); /* or translateY(10px) depending direction */
  pointer-events: none;
}

/* ---------- Columns ---------- */

.hero-bar-left {
  flex: 1 1 10%;
  min-width: 260px;
  /* background-color: var(--global-color-blue); */
  padding: 20px;
}

.is-sticky-bar .hero-bar-left {
  flex: 1 1 12%;
  min-width: 260px;
  background-color: #ffffff;
  padding: 15px;
  position: relative;
}

p#breadcrumbs {
  font-weight: 100;
}
section#main-breadcrumb-content {
  margin: -40px 0 0;
}

.hero-bar-middle {
  flex: 1 1 45%;
  min-width: 260px;
  display: flex;

  align-items: stretch;
  gap: 16px 20px;
  flex-wrap: wrap; /* allows domains to wrap if tight */
}

/* Both boxes participate in the stretch height */
.hero-bar-middle > .system-segment,
.hero-bar-middle > .operating-domains {
  display: flex;
  align-items: center; /* center their inner content vertically */
  box-sizing: border-box; /* padding won't break the equal height */
}

.hero-bar-right {
  flex: 0 0 auto;
  padding-right: 25px;
}

.product-hero-bar .hero-bar-left,
.product-hero-bar .hero-bar-middle {
  flex: 0 1 auto;
  min-width: 0; /* prevents overflow in long text */
}

.product-hero-bar .hero-bar-right {
  flex: 1 1 auto; /* <- fills all leftover space */
  display: flex;
  justify-content: flex-end; /* <- button hugs the right edge */
  align-items: center;
}

/* ---------- Title / subtitle ---------- */
.hero-bar-title {
  margin: 0px;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--global-color-blue);
}

.is-sticky-bar .hero-bar-title,
.is-sticky-bar .hero-bar-subtitle {
  transition: color 100ms linear;
  color: #000;
}

.hero-bar-subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1rem);
  line-height: 1.3;
  color: #ffffff;
}

/* ---------- Segment chip + domains ---------- */
.system-segment,
.operating-domains .domain-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  white-space: nowrap;
}

.operating-domains .domain-item {
  flex-direction: column;
  gap: 0;
  padding: 10px 30px 0px 20px;
  border-right: 1px solid #ccc;
}

.operating-domains .domain-item:last-item {
  border-right: 0px;
}

.operating-domains .domain-item:first-child {
  padding: 10px 30px 0px 10px;
}

.operating-domains .domain-item span {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: space-around;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  column-gap: 10px;
}

.system-segment .segment-text,
.domain-item .domain-text {
  font-size: 1rem;
  line-height: 1;
  color: var(--global-color-blue);
  font-weight: 600;
}

.system-segment .segment-text {
  font-size: 2rem;
  font-weight: 600;
}

/* Keep segment and domains aligned in one row where possible */
.hero-bar-middle .system-segment {
  margin-right: 6px;
}
.operating-domains {
  display: inline-flex;
  align-items: center;
  gap: var(--chip-gap);
  flex-wrap: wrap;
}

/* ---------- Icons (replace URLs) ---------- */
.icon-defence,
.icon-air,
.icon-land {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-defence {
  width: 60px;
  height: 60px;
}

/* ==== Technical Details (Specs list) ==== */

/* Section title */
.block-title {
  margin: 0 0 1rem 0;
  /* responsive size similar to the design */
  color: var(--global-color-blue, #1a56ff); /* matches the blue in the image */
}

/* List resets */
.details-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Rows */
.detail-item {
  display: flex;
  /* label | value */
  align-items: center;
  padding: 1.25rem 0; /* vertical rhythm like screenshot */
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  justify-content: space-between;
}
.detail-item:first-child {
  background: var(--global-color-blue, #1a56ff);
  color: #fff;
}

.detail-item:first-child > span {
  color: #fff;
}
/* Left column: label */
.detail-title {
  display: block;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #0d0f12;
  word-break: break-word;
  white-space: pre-line;
  max-width: 33%;
  padding-left: 1rem;
}

/* Right column: value */
.detail-content {
  display: block;
  font-weight: 600;
  line-height: 1.5;
  color: #0d0f12;
  white-space: pre-line;
  width: 33%;
}

/* ---------- Brochure-style button (dark bg, grey text, PDF icon + arrow) ---------- */
.hero-bar-right .btn-brochure-style {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid;
}

.hero-bar-right .btn-brochure-style:hover {
  opacity: 0.9;
  color: #a0a0a0;
}

.hero-bar-right .btn-brochure-style .btn-brochure-icon {
  flex-shrink: 0;
  color: currentColor;
}

.hero-bar-right .btn-brochure-style .btn-brochure-text {
  flex: 0 1 auto;
}

.hero-bar-right .btn-brochure-style .btn-brochure-arrow {
  flex-shrink: 0;
  font-size: 1.1em;
  font-weight: 600;
}

.single-product .hero-bar-right .btn-brochure-style {
  padding: 3px 20px;
  min-height: 49px;
}

/* Legacy brief button when not using brochure style */
a.btn.brief-btn-new:not(.btn-brochure-style) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: var(--global-color-blue);
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
  margin-right: 10px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid;
}
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: var(--global-color-blue);
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
}

.btn-orange:hover {
  color: #fff;
  background: var(--global-color-blue);
}
.btn-orange:active {
}
.btn-orange:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.btn-orange::after {
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/chevron-right.svg);
  margin-left: 10px;

  transition: transform 0.2s ease;
}

.btn-orange:hover::after {
  transform: translateX(3px);
}

@keyframes fadeOutAndMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes fadeInAndMove {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-main.show {
  animation: fadeInAndMove 0.5s ease-out forwards; /* 'forwards' keeps the final state */
}

.header-main.is-sticky {
  padding: 0px;
  background-color: #ffffff;
  animation: fadeInAndMove 0.5s ease-out forwards; /* 'forwards' keeps the final state */
}

.is-sticky .top-bar {
  display: none;
}

.iai-product-toggle-wrapper {
  height: 100%;
}

.is-sticky .header-logo {
  flex-basis: 100px;
  justify-content: center;
  height: 100%;
  background-color: var(--global-color-blue) !important;
}

.is-sticky .header-navigation {
  display: flex;
  gap: 0px;
}

.is-sticky .iai-mm-nav {
  position: fixed;
  top: 100px;
  left: 0px;
  transform: translateY(-12px); /* slide down from above */
  pointer-events: none; /* act like hidden */
  transition:
    transform 0.1s ease,
    opacity 0.1s ease,
    visibility 0s linear 0.1s; /* hide after animation completes */
  will-change: transform, opacity;
  z-index: 9999;
}
/*
.iai-product-toggle-wrapper	{
		display:none;
}

.is-sticky .iai-mm-nav {
    opacity: 0;
    position: fixed;
    top: 100px;
    left: 0px;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: transform .1s  ease, opacity .1s ease, visibility 0s linear .1s;
    will-change: transform, opacity;
    z-index: 9999;
}
*/

.iai-product-toggle-wrapper {
  display: none;
}

.is-sticky .iai-mm-nav {
  opacity: 0;
  position: fixed;
  top: 100px;
  left: 0px;
  transform: translateY(-12px);
  pointer-events: none;
  visibility: hidden;
  transition:
    transform 0.1s ease,
    opacity 0.1s ease,
    visibility 0s linear 0.1s;
  will-change: transform, opacity;
  z-index: 9999;
}

.is-sticky .iai-product-toggle-wrapper .burger-menu {
  position: relative;
  width: 21px;
  height: 14px;
}

.is-sticky .iai-product-toggle-wrapper .burger-menu span:nth-child(2) {
  transform: translateY(6px);
}

.is-sticky .iai-product-toggle-wrapper .burger-menu span:nth-child(3) {
  transform: translateY(12px);
}

.is-sticky .product-menu-active .iai-product-toggle-wrapper .burger-menu span {
  transform: translateY(6px);
}

.is-sticky .iai-product-toggle-wrapper {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  height: 100%;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: var(--global-color-blue) !important;
  color: inherit;
  padding: 0;
}

.is-sticky .iai-product-toggle-wrapper .burger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  top: 0;
  transition: transform 250ms ease;
  backface-visibility: hidden;
}

.iai-product-toggle:hover,
.iai-product-toggle:focus {
  background: transparent;
}

.product-menu-active .is-sticky .iai-mm-nav {
  display: flex;
  opacity: 1;
  background: var(--iai-dark-menu);
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  margin-left: 0px;
  transition:
    transform 0.1s ease,
    opacity 0.1s ease,
    visibility 0s; /* show immediately */
}

.product-menu-active .is-sticky .iai-mm-nav .search-btn {
  display: flex;
}

.product-menu-active .is-sticky .iai-mm-top > li.search-btn a {
  height: auto;
  font-size: 1rem;
  top: 0px;
  color: #000 !important;
}

.product-menu-active .is-sticky .iai-mm-top > li.search-btn a {
  color: #fff !important;
  padding: 0 30px !important;
  border-radius: 0px;
  border: none;
}

/* --- Tabs: Base tokens (tweak as you like) --- */
.tabs-blocks {
  --tabs-accent: var(--global-color-blue);
  --tabs-text: #111111;
  --tabs-muted: #111111;
}

/* --- Tablist row --- */
.tabs-blocks .tabs-list[role="tablist"] {
  display: flex;
  gap: 1rem;
  margin: 0 0 1rem 0;
  padding: 0;
  overflow-x: auto; /* nice for mobile */
  scrollbar-width: thin;
}
.tabs-blocks .tabs-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabs-blocks .tabs-list li [role="tab"] {
  padding-left: 0;
  text-align: left; /* optional */
  justify-content: flex-start; /* if you’re using flex on the button */
}

.tabs-blocks .tabs-list {
  margin-left: calc(-1 * var(--container-pad, 0px));
}

/* --- Tabs --- */
.tabs-blocks [role="tab"] {
  appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0 1rem 0.75rem;
  color: var(--tabs-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font-weight: 500;
  font-family: Rajdhani, sans-serif !important;
  font-size: 1.4rem;
}
.tabs-blocks [role="tab"][aria-selected="true"] {
  color: var(--tabs-text);
  border-bottom-color: var(--tabs-accent);
  font-weight: 700;
}
.tabs-blocks [role="tab"]:hover {
  color: var(--tabs-text);
}
.tabs-blocks [role="tab"]:focus-visible {
  outline: 2px solid var(--tabs-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Panels --- */
.tabs-blocks .tab-panel {
  padding: 0.25rem 0;
  max-width: 60vw;
}
.tabs-blocks .tab-panel[hidden] {
  display: none !important;
}

/* --- Reduce motion nicety --- */
@media (prefers-reduced-motion: no-preference) {
  .tabs-blocks [role="tab"] {
    transition:
      color 0.15s ease,
      border-color 0.15s ease;
  }
}

/* ---------- Grid ---------- */
.news-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ---------- Card ---------- */
.news-article {
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}

/* ---------- Thumbnail ---------- */
.news-thumbnail {
  position: relative;
  aspect-ratio: 520 / 311; /* keeps the tall image feel; remove if you want natural height */
  background: #dfe6f3;
}
.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(102%);
  transition: transform 0.6s ease;
}
.news-article:hover .news-thumbnail img {
  transform: scale(1.03);
}

.news-date {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 84px;
  height: 84px;
  background-color: var(--global-color-blue);
  color: #ffffff; /* white text */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  z-index: 99;
}

.news-date .day {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.news-date .month {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}

@supports (mask: paint(something)) {
  /* no-op; placeholder to avoid older engines choking on ::first-line in some builders */
}

/* ---------- Content panel ---------- */
.news-content {
  background: var(--excerpt-bg);
  padding: 26px 24px 28px;
}
.news-title {
  margin: 0 0 10px 0;
  line-height: 1.12;
}
.news-title a {
  color: #1b2128;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(20px, 1.2vw + 18px, 28px);
}
.news-title a:hover {
}

.news-excerpt {
  color: #1b2128;
  font-size: clamp(14px, 0.25vw + 13px, 24px);
  line-height: 1.55;
}

/* ---------- Accessibility tweaks ---------- */
.news-title a:focus-visible,
.news-article:focus-within .news-title a {
  outline: 2px solid #2752ff;
  outline-offset: 3px;
  border-radius: 6px;
}

.news-thumbnail {
  position: relative;
  overflow: hidden;
}

.accordion-toggle {
  display: none;
  background: none;
  color: #000000;
}

.accordion-panel {
  overflow: hidden;
  opacity: 1; /* visible when open */
  transition:
    height 0.28s ease,
    opacity 0.2s ease;
}

/* Optional: style open/closed section states without hiding the section */
section.accordion-section.is-open > .accordion-toggle::after {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  .is-sticky .iai-mm-nav,
  .product-menu-active .is-sticky .iai-mm-nav {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1600px) {
  .product-hero .hero-title {
    font-size: clamp(6rem, 12vw, 16rem);
  }
  .product-hero .hero-subtitle {
    font-size: clamp(3rem, 6.5vw, 8rem);
  }
}
@media (max-width: 1024px) {
  .product-hero#hero {
    min-height: 75vh;
  }
  .product-hero .hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
  }
  .product-hero .hero-subtitle {
    font-size: clamp(2rem, 6vw, 5rem);
  }
}

@media screen and (max-width: 14.5in) {
  .product-hero .hero-title {
    font-size: clamp(3rem, 12vw, 3rem);
  }
  .product-hero .hero-subtitle {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .product-hero .hero-ctas a {
    padding: 0.75rem 0.9rem;
  }
}

@media screen and (max-width: 1099.98px) {
  .is-sticky .iai-product-toggle-wrapper {
    display: none;
  }
  .news-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-hero-bar .hero-bar-inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .hero-bar-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    order: 3; /* move button to last on wrap */
  }
  .hero-bar-middle {
    order: 2;
  }
  .hero-bar-left {
    order: 1;
  }
}

/* ===== Responsive columns ===== */
@media (max-width: 960px) {
  .icon-blocks .icon-block {
    flex: 0 1 calc((100% - var(--gap)) / 2); /* 2 cols */
  }
}

/* Tablet and down (up to 991px) */
@media screen and (max-width: 991px) {
}

@media (max-width: 900px) {
  .block-middle_banner_block .middle-content h3 {
    font-size: 3.2rem;
  }
  .block-middle_banner_block .middle-content p {
    font-size: 1.6rem;
  }
  .block-middle_banner_block .middle-content {
    text-align: center;
    align-items: center;
  }
  /*.gallery-block > figure { width: 50%; }     /* 2 columns */

  .detail-item {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
    padding: 1rem 0;
  }
  .detail-title {
    /* give the label a little hierarchy on mobile */
    opacity: 0.9;
  }
}

/* Mobile only (up to 767px) */
@media screen and (max-width: 767px) {
  .header-navigation {
    flex-direction: row-reverse;
  }

  .single-product.one-container .site-content {
    padding: 60px 0px 10px 0px;
  }

  .product-nav ul,
  .block-icon_blocks .icon-blocks,
  .overview-highlights,
  .external-logos,
  .related-solutions {
    flex-direction: column;
  }

  .overview-highlights-inner {
    flex-direction: column-reverse;
  }
  .overview-highlights > div > div {
    width: 100%;
  }

  .accordion-panel.is-closed {
    height: 0 !important;
    opacity: 0;
  }

  .logos-list {
    margin: 20px 0px;
  }

  .system-segment,
  .operating-domains .domain-item {
    padding: 6px 0px;
  }

  .hero-bar-right {
    padding-right: 0px;
  }

  .product-hero-bar .hero-bar-left {
    display: none;
  }

  .product-hero .hero-text {
    justify-content: flex-start;
    padding-top: 7rem;
  }

  .product-hero .hero-ctas a:nth-child(2) {
    display: inline-flex;
    align-items: center; /* centers text + icon vertically */
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;

    background: #ffffff;
    color: var(--global-color-blue);
    border: 0;
    border-radius: 0;
    padding: 0.85rem 1.1rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    gap: 0.5em; /* consistent space between text & icon */
  }

  .product-hero .hero-ctas a:nth-child(2)::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/play-button.svg") center/contain no-repeat;
    position: relative;
    top: -2px; /* <— raises the icon slightly */
  }

  /* optional hover animation */
  .product-hero .hero-ctas a:nth-child(2):hover::after {
    transform: translateX(3px);
    transition: transform 0.2s ease;
  }

  .product-hero-bar {
    transform: translateY(0%);
  }

  .product-nav {
    overflow: hidden;
  }
  .product-nav__toggle {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    background: transparent;
    color: inherit;
    border: 0;
    font: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .product-nav__caret {
    transition: transform 0.2s ease;
  }
  .product-nav[aria-expanded="true"] .product-nav__caret {
    transform: rotate(180deg);
  }

  .product-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    transition: max-height 0.25s ease;
    gap: 4px;
  }
  .product-nav[aria-expanded="true"] ul {
    max-height: 500px;
  } /* enough to reveal list */

  .product-nav li a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text, inherit);
    font-size: 1.5rem;
  }
  .product-nav li a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .tabs-blocks .tabs-list[role="tablist"] {
    flex-direction: column;
    padding-left: 25px;
  }

  .tabs-blocks .tab-panel {
    line-height: 1.8rem;
  }

  .accordion-panel .detail-title {
    width: auto;
    max-width: initial;
  }

  .accordion-panel .highlights ul {
    margin: 0 0 1.5em 1em;
    line-height: 1.9rem;
  }

  .icon-blocks .icon-block {
    text-align: left;
    align-items: flex-start;
  }

  .icon-blocks .icon-block img {
    width: 55px;
    height: 54px;
    margin-left: 0px;
  }

  .news-content {
    padding: 20px 18px 22px;
  }
  .news-date {
    top: 12px;
    left: 12px;
    width: 72px;
    height: 72px;
    padding-top: 12px;
  }
  .news-date::first-line {
    font-size: 30px;
  }

  .news-date .day {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
  }
  .news-date .month {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
  }

  .overview-product-nav {
    display: none;
  }

  .content-container.accordion-section {
    padding: 0px 0px 0px 16px;
  }

  .overview-highlights.accordion-section {
    padding: 0px;
  }

  .accordion-toggle .label {
    color: #000000;
  }

  /* Make the button span the container */
  .accordion-toggle,
  .accordion-toggle:hover {
    display: flex;
    inline-size: 100%; /* logical width, RTL-safe */
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem 0.75rem 0rem;
    cursor: pointer;
    font-size: 24px;
    background: none;
  }

  .overview-highlights .accordion-toggle {
    padding: 16px;
  }

  /* Label on the left; icon pushed to far right */
  .accordion-toggle .label {
    flex: 1 1 auto;
    text-align: start; /* RTL-safe */
  }

  /* Icon: outlined square with plus/minus inside */
  .accordion-toggle .icon {
    margin-inline-start: auto; /* push to the far edge */
    inline-size: 24px;
    block-size: 24px;
    color: var(--global-color-blue); /* blue from your mock */
    border: 2px solid var(--global-color-blue);
    border-radius: 6px;
    position: relative;
    line-height: 0; /* ignore any inner text */
    /* Draw the + with two backgrounds (horizontal + vertical bars) */
    background:
      linear-gradient(var(--global-color-blue), var(--global-color-blue))
        center / 12px 2px no-repeat,
      /* — */
        linear-gradient(var(--global-color-blue), var(--global-color-blue))
        center / 2px 12px no-repeat; /* | */
    /* Hide any literal “+” in your HTML, keep for fallback/ATs */
    color: transparent;
  }

  /* Re-apply color to the drawn shapes */
  .accordion-toggle .icon {
    -webkit-mask: none;
  }
  .accordion-toggle .icon {
    background-color: #ffffff;
  }

  /* When opened (aria-expanded="true"): turn + into − by hiding the vertical bar */
  .accordion-toggle[aria-expanded="true"] .icon {
    background: linear-gradient(
        var(--global-color-blue),
        var(--global-color-blue)
      )
      center / 12px 2px no-repeat; /* — only */
  }

  /* Optional: hover/focus polish */

  .accordion-toggle:focus-visible {
    outline: 2px solid var(var(--global-color-blue), #2a4bff);
    outline-offset: 2px;
  }

  .nav-col.promo {
    padding: 0px;
  }
}

/* Stack neatly on phones; center content and make button full-width */
@media (max-width: 640px) {
  .product-hero-bar .hero-bar-inner {
    padding-inline: 0px;
    gap: 0px;
  }
  .hero-bar-left,
  .hero-bar-middle,
  .hero-bar-right {
    width: 100%;
  }

  .hero-bar-left {
    text-align: center;
  }
  .hero-bar-middle {
    justify-content: normal;
  }
  .hero-bar-right {
    justify-content: center;
  }

  .btn-orange {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    font-size: 1.5rem;
  }

  .news-articles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  /*.gallery-block > figure { width: 100%; }    /* 1 column */

  .icon-blocks .icon-block {
    flex: 0 1 100%; /* 1 col */
  }

  .product-hero .hero-title {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }
  .product-hero .hero-subtitle {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .product-hero .hero-ctas a {
    padding: 0.75rem 0.9rem;
  }
  .product-hero .dot-grid {
    display: none; /* hide dots on very small screens */
  }
}

/* ---------- Optional: tighter cards on very small screens ---------- */
@media (max-width: 420px) {
  .news-content {
    padding: 20px 18px 22px;
  }
  .news-date {
    top: 12px;
    left: 12px;
    width: 72px;
    height: 72px;
    padding-top: 12px;
  }
  .news-date::first-line {
    font-size: 30px;
  }

  .news-date .day {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
  }
  .news-date .month {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
  }
}

@media (min-width: 769px) {
  .is-sticky .header-logo {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .product-nav__toggle {
    display: none;
  }
  .product-nav ul {
    display: flex;
    gap: 40px;
  }
}

@media (min-width: 1580px) {
  .is-sticky-nav .overview-product-nav {
    position: fixed;
    top: 100px;
    background-color: #fff;
    max-width: 100%;
    width: 100%;
    padding: 10px 20px;
    z-index: 99;
  }

  .is-sticky-nav .overview-product-nav .product-nav ul li a {
    padding: 0px 20px;
    font-size: 1.2rem;
  }

  .iai-mm-top > li.search-btn a {
    border-radius: 0px !important;
    border: none !important;
  }
}
