/* <!-- HERO START --> */
:root {
  --ics-navy: #011a44;
  --ics-hero-bg: #f4f9fe;
  --ics-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ics-white);
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
}

main {
  padding-top: 128px;
}

.ics-precast-hero {
  position: relative;
  width: 100%;
  height: 741px;
  overflow: hidden;
  background: var(--ics-hero-bg);
  border-radius: 0 0 32px 32px;
}

.ics-precast-hero__content {
  position: absolute;
  z-index: 2;
  top: 394px;
  left: max(100px, calc((100vw - 1440px) / 2 + 100px));
  width: 639px;
}

.ics-precast-hero h1 {
  width: 639px;
  margin: 0;
  font-size: 47.78px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.ics-precast-hero__content > p {
  width: 620px;
  margin: 20px 0 0 3px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.ics-precast-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 48px 0 0 3px;
}

.ics-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--ics-navy);
  border-radius: 8px;
  color: var(--ics-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ics-button:hover,
.ics-button:focus-visible {
  transform: translateY(-1px);
  box-shadow:none;
}

.ics-button:focus-visible {
  outline: 3px solid rgba(1, 26, 68, 0.25);
  outline-offset: 3px;
}

.ics-button--primary {
  background: var(--ics-navy);
  color: var(--ics-white);
}

.ics-button--secondary {
  background: var(--ics-white);
}

.ics-precast-hero__gallery {
  position: absolute;
  top: -100px;
  /* left: max(732px, calc((100vw - 1440px) / 2 + 732px)); */
  left: calc(50% + 12px);
  display: flex;
  gap: 24px;
  width: 608px;
  height: 941px;
}

.ics-precast-hero__column {
  flex: 0 0 292px;
  width: 292px;
  height: 100%;
  overflow: hidden;
}

.ics-precast-hero__track {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

.ics-precast-hero__image-set {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

.ics-precast-hero__image-set img {
  display: block;
  width: 292px;
  height: 347px;
  flex: 0 0 347px;
  object-fit: cover;
  border-radius: 16px;
}

/* First column starts from the duplicated set and moves downward. */
.ics-precast-hero__column--down .ics-precast-hero__track {
  animation: ics-precast-scroll-down 36s linear infinite;
}

/* Second column moves upward toward the duplicated set. */
.ics-precast-hero__column--up .ics-precast-hero__track {
  animation: ics-precast-scroll-up 36s linear infinite;
}

.ics-precast-hero__gallery:hover .ics-precast-hero__track {
  animation-play-state: paused;
}

@keyframes ics-precast-scroll-down {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ics-precast-scroll-up {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}

/* Tablet/mobile horizontal marquee directions. */
@keyframes ics-precast-scroll-left-to-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ics-precast-scroll-right-to-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1180px) {
  .ics-precast-hero__content {
    left: 64px;
    width: min(52vw, 600px);
  }

  .ics-precast-hero h1 {
    width: 100%;
    font-size: clamp(38px, 4vw, 47.78px);
  }

  .ics-precast-hero__content > p {
    width: 100%;
  }

  .ics-precast-hero__gallery {
    left: 58%;
  }
}

@media (max-width: 1100px) {
  .ics-precast-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 112px 40px 56px;
  }

  .ics-precast-hero__content {
    display: contents;
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 660px);
  }

  .ics-precast-hero h1 {
    order: 1;
    width: min(100%, 660px);
    align-self: flex-start;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
  }

  .ics-precast-hero h1::after {
    content: none;
    display: none;
  }

  .ics-precast-hero__content > p {
    order: 3;
    width: min(100%, 660px);
    align-self: flex-start;
  }

  .ics-precast-hero__actions {
    order: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 660px);
    align-self: flex-start;
    gap: 16px;
  }

  .ics-precast-hero__actions .ics-button {
    width: 100%;
    white-space: nowrap;
  }

  .ics-precast-hero__gallery {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 48px;
    gap: 20px;
    overflow: hidden;
    touch-action: pan-y;
  }

  .ics-precast-hero__column {
    flex: 0 0 280px;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }

  .ics-precast-hero__track {
    flex-direction: row;
    width: max-content;
    height: 100%;
  }

  .ics-precast-hero__image-set {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 20px;
    padding: 0 20px 0 0;
  }

  .ics-precast-hero__image-set img {
    width: 260px;
    height: 280px;
    flex: 0 0 260px;
    object-fit: cover;
  }

  /* First row moves left to right. */
  .ics-precast-hero__column--down .ics-precast-hero__track {
    animation-name: ics-precast-scroll-left-to-right;
    animation-duration: 34s;
  }

  /* Second row moves right to left. */
  .ics-precast-hero__column--up .ics-precast-hero__track {
    animation-name: ics-precast-scroll-right-to-left;
    animation-duration: 34s;
  }

  .ics-precast-hero__gallery:active .ics-precast-hero__track {
    animation-play-state: paused;
  }
}

@media (max-width: 600px) {
  main {
    padding-top: 104px;
  }

  .ics-precast-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 96px 20px 32px;
    border-radius: 0 0 24px 24px;
  }

  .ics-precast-hero h1 {
    width: 100%;
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.22;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .ics-precast-hero__content > p {
    margin-left: 0;
  }

  .ics-desktop-break {
    display: none;
  }

  .ics-precast-hero__gallery {
    order: 2;
    display: flex;
    flex-direction: column;
    width: calc(100% + 40px);
    height: auto;
    gap: 12px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 24px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .ics-precast-hero__content {
    display: contents;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .ics-precast-hero__actions {
    order: 4;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 32px 0 0;
  }

  .ics-button {
    width: 100%;
    min-height: 44px;
    padding: 8px 6px;
    font-size: clamp(11px, 3.2vw, 14px);
    white-space: nowrap;
  }

  .ics-precast-hero__column {
    flex: 0 0 210px;
    width: 100%;
    height: 210px;
  }

  .ics-precast-hero__track {
    flex-direction: row;
    width: max-content;
    height: 100%;
  }

  .ics-precast-hero__image-set {
    flex-direction: row;
    gap: 12px;
    padding: 0 12px 0 0;
  }

  .ics-precast-hero__image-set img {
    width: 220px;
    height: 210px;
    flex: 0 0 220px;
    border-radius: 12px;
  }

  .ics-precast-hero__column--down .ics-precast-hero__track,
  .ics-precast-hero__column--up .ics-precast-hero__track {
    animation-duration: 26s;
  }

  .ics-precast-hero h1 {
    order: 1;
  }

  .ics-precast-hero__content > p {
    order: 3;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ics-button {
    transition: none;
  }

  .ics-precast-hero__track {
    animation: none !important;
    transform: none !important;
  }
}

/* <!-- HERO END --> */

/* <!-- Our Precast Products Start --> */

.ics-products-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.ics-products-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.ics-products-title {
  margin: 0 0 31.525px;
  color: #000000;
  font-size: 33.18px;
  font-weight: 700;
  line-height: 1.25;
}

/* Exact desktop grid: 397px + 24px + 397px + 24px + 397px */
.ics-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 397px);
  gap: 24px;
}

/* Exact Figma card measurement */
.ics-product-card {
  position: relative;
  width: 397px;
  height: 549px;
  overflow: hidden;
  background: #f4f9fe;
  border-radius: 16px;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ics-product-card:hover {
  transform: translateY(-8px);
  box-shadow:none;
}

/* Exact Figma image measurement */
.ics-product-card__image {
  width: 397px;
  height: 347px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px 16px 0 0;
}

.ics-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ics-product-card:hover .ics-product-card__image img {
  transform: scale(1.055);
}

.ics-product-card__content {
  position: relative;
  height: 202px;
  padding: 19px 24px 24px;
}

.ics-product-card__content h3 {
  width: 349px;
  margin: 0;
  color: #17212b;
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}

.ics-product-card__content p {
  width: 330px;
  margin: 8px 0 0;
  color: #607080;
  font-size: 16px;
  font-weight: 400;
  line-height: 26.4px;
}

.ics-product-card__enquire {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 27px;
  color: #011a44;
  font-size: 16px;
  font-weight: 800;
  line-height: 26.4px;
  text-decoration: none;
}

.ics-product-card__enquire::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: #011a44;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ics-product-card__arrow {
  display: inline-block;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ics-product-card:hover .ics-product-card__arrow,
.ics-product-card__enquire:hover .ics-product-card__arrow {
  transform: translateX(9px);
}

.ics-product-card:hover .ics-product-card__enquire::after,
.ics-product-card__enquire:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scroll reveal */
.ics-reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.ics-reveal.ics-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .ics-reveal {
    opacity: 0;
    transform: translateY(32px);
  }

  .ics-reveal.ics-is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1280px) {
  .ics-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ics-product-card,
  .ics-product-card__image {
    width: 100%;
  }

  .ics-product-card__content h3,
  .ics-product-card__content p {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .ics-products-section {
    padding: 72px 0;
  }

  .ics-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ics-products-section {
    padding: 56px 0;
  }

  .ics-products-container {
    width: calc(100% - 40px);
  }

  .ics-products-title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .ics-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ics-product-card {
    height: auto;
    min-height: 549px;
  }

  .ics-product-card__image {
    height: 347px;
  }

  .ics-product-card__content {
    min-height: 202px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ics-product-card,
  .ics-product-card__image img,
  .ics-product-card__arrow,
  .ics-product-card__enquire::after,
  .ics-reveal {
    transition-duration: 1ms;
  }
}

/* <!-- Our Precast Products end --> */

/* <!-- CTA Start --> */

.ics-cta-section {
  width: 100%;
  padding: 0 0 50px;
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

/*
  Exact Figma desktop measurement:
  width: 1240px
  height: 532px
  left: 100px on a 1440px frame
*/
.ics-cta-section__container {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  height: 532px;
  margin: 0 auto;
  overflow: hidden;
  background: #f4f9fe;
  border-radius: 24px;
  isolation: isolate;
}

/*
  Figma image:
  internal left: 775px - 100px = 675px
  width: 565px
  height: 532px
*/
.ics-cta-section__image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 675px;
  width: 565px;
  height: 532px;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}

.ics-cta-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/*
  Figma gradient:
  internal left: 774px - 100px = 674px
  width: 566px
*/
.ics-cta-section__gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 674px;
  width: 566px;
  height: 532px;
  background: linear-gradient(
    270deg,
    rgba(244, 249, 254, 0) 0%,
    #f4f9fe 100%
  );
  pointer-events: none;
}

/*
  Figma content group:
  internal left: 174px - 100px = 74px
  internal top: 2786px - 2709px = 77px
*/
.ics-cta-section__content {
  position: absolute;
  z-index: 3;
  top: 77px;
  left: 74px;
  width: 601px;
  height: 369px;
}

/* Exact Figma: 233 × 35 */
.ics-cta-section__eyebrow {
  width: 233px;
  height: 35px;
  margin: 0;
  color: #000000;
  font-size: 23.04px;
  font-weight: 400;
  line-height: 1.5;
}

/* Exact Figma: 542 × 82 */
.ics-cta-section__content h2 {
  width: 542px;
  min-height: 82px;
  margin: 0;
  color: #000000;
  font-size: 33.18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

/* Exact Figma: top 210px inside container, 601 × 72 */
.ics-cta-section__description {
  width: 601px;
  min-height: 72px;
  margin: 16px 0 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* Exact Figma: top 290px inside container, 517 × 96 */
.ics-cta-section__details {
  width: 517px;
  min-height: 96px;
  margin: 8px 0 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.98;
}

.ics-cta-section__details-list {
  width: 517px;
  min-height: 96px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.98;
}

.ics-cta-section__details-list li + li {
  margin-top: 2px;
}

/* Exact Figma: 271 × 36, no arrow */
.ics-cta-section__button {
  display: flex;
  width: 271px;
  height: 36px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #011a43;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 350ms ease,
    box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ics-cta-section__button:hover,
.ics-cta-section__button:focus-visible {
  transform: translateY(-2px);
  background: #082c63;
  box-shadow:none;
}

.ics-cta-section__button:focus-visible {
  outline: 3px solid rgba(1, 26, 67, 0.24);
  outline-offset: 3px;
}

/* Safe default when JavaScript is unavailable */
.ics-cta-section__container,
.ics-cta-section__content > *,
.ics-cta-section__image {
  opacity: 1;
}

/* Smooth reveal animation without changing Figma positioning */
@media (prefers-reduced-motion: no-preference) {
  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__container {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__container.ics-cta-is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__content > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__container.ics-cta-is-visible
  .ics-cta-section__content > * {
    opacity: 1;
    transform: translateY(0);
  }

  .ics-cta-section__content > :nth-child(1) {
    transition-delay: 100ms;
  }

  .ics-cta-section__content > :nth-child(2) {
    transition-delay: 170ms;
  }

  .ics-cta-section__content > :nth-child(3) {
    transition-delay: 240ms;
  }

  .ics-cta-section__content > :nth-child(4) {
    transition-delay: 310ms;
  }

  .ics-cta-section__content > :nth-child(5) {
    transition-delay: 380ms;
  }

  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__image {
    opacity: 0;
    transform: translateX(30px);
    transition:
      opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ics-cta-section.ics-cta-animations-ready
  .ics-cta-section__container.ics-cta-is-visible
  .ics-cta-section__image {
    opacity: 1;
    transform: translateX(0);
  }

  .ics-cta-section__container:hover
  .ics-cta-section__image img {
    transform: scale(1.025);
  }
}

/* Responsive tablet */
@media (max-width: 1100px) {
  .ics-cta-section__container {
    height: 532px;
  }

  .ics-cta-section__content {
    left: 48px;
    width: 52%;
  }

  .ics-cta-section__content h2,
  .ics-cta-section__description,
  .ics-cta-section__details,
  .ics-cta-section__details-list {
    width: 100%;
  }

  .ics-cta-section__image {
    right: 0;
    left: auto;
    width: 48%;
  }

  .ics-cta-section__gradient {
    right: 0;
    left: auto;
    width: 52%;
  }
}

/* Responsive mobile */
@media (max-width: 700px) {
  .ics-cta-section {
    padding-bottom: 56px;
  }

  .ics-cta-section__container {
    display: flex;
    width: calc(100% - 40px);
    height: auto;
    flex-direction: column;
    border-radius: 20px;
  }

  .ics-cta-section__image {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 1;
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0 0;
  }

  .ics-cta-section__gradient {
    display: none;
  }

  .ics-cta-section__content {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: 100%;
    height: auto;
    padding: 32px 24px 36px;
  }

  .ics-cta-section__eyebrow {
    width: auto;
    height: auto;
    font-size: 20px;
  }

  .ics-cta-section__content h2 {
    width: 100%;
    min-height: 0;
    margin-top: 4px;
    font-size: 28px;
  }

  .ics-cta-section__description,
  .ics-cta-section__details,
  .ics-cta-section__details-list {
    width: 100%;
    min-height: 0;
  }

  .ics-cta-section__description {
    margin-top: 18px;
  }

  .ics-cta-section__button {
    width: 100%;
    height: 44px;
  }
}

/* <!-- CTA End --> */

/* <!-- FAQ Start --> */

.faq-section {
  width: 100%;
  --max-w: 1240px;
  width: min(var(--max-w), calc(100% - 40px));
  margin: 50px auto 0;
  padding: 0 0 80px;
  --ink: #0e1a16;
  --ink-soft: #4b5a55;
  --bg: #f5f7f6;
  --card: #ffffff;
  --border: #e2e8e5;
  --accent: #1462d1;
  --accent-soft: #e6f0fd;
  --accent-dark: #0d47a3;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(14, 26, 22, 0.04), 0 8px 24px -12px rgba(14, 26, 22, 0.1);
}

.faq-header {
  max-width: 640px;
  margin: 0 0 48px;
  text-align: left;
}

.faq-heading {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 33.18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow:none;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 200ms ease;
}

.faq-item:hover {
  border-color: #bcd6f7;
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow:none;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.faq-icon {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  transition: background 250ms ease, transform 300ms ease;
}

.faq-item.is-open .faq-icon {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 320ms ease, opacity 280ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  max-width: 56ch;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-icon,
  .faq-icon::after,
  .faq-answer {
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .faq-section {
    padding: 0 0 96px;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 16px;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 0 0 110px;
  }

  .faq-grid {
    column-gap: 28px;
    row-gap: 18px;
  }

  .faq-header {
    margin-bottom: 56px;
  }
}

@media (min-width: 1440px) {
  .faq-section {
    padding: 0 0 120px;
  }

  .faq-grid {
    column-gap: 32px;
    row-gap: 20px;
  }
}

/* Keep the CTA-to-FAQ section gap consistent on responsive screens. */
@media (max-width: 767px) {
  .ics-cta-section {
    padding-bottom: 56px;
  }

  .faq-section {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .faq-section {
    margin-top: 22px;
  }
}

/* <!-- FAQ End --> */

/* ==========================================================
   RESPONSIVE CTA FIX
   Desktop remains unchanged. Tablet and mobile use one clean
   stacked card with a controlled two-line heading.
   ========================================================== */
@media (max-width: 1100px) {
  .ics-cta-section__container {
    display: flex;
    width: calc(100% - 48px);
    height: auto;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
  }

  .ics-cta-section__image {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 1;
    width: 100%;
    height: clamp(300px, 40vw, 360px);
    border-radius: 20px 20px 0 0;
  }

  .ics-cta-section__gradient {
    display: none;
  }

  .ics-cta-section__content {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: 100%;
    height: auto;
    padding: 36px 40px 40px;
  }

  .ics-cta-section__eyebrow {
    width: auto;
    height: auto;
    font-size: 20px;
  }

  .ics-cta-section__content h2 {
    width: 100%;
    min-height: 0;
    margin-top: 6px;
    overflow: visible;
    font-size: 0;
  }

  .ics-cta-section__content h2::after {
    content: "Manufactured according to\A customer requirements.";
    display: block;
    color: #000000;
    font-size: clamp(28px, 3.5vw, 32px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    white-space: pre;
  }

  .ics-cta-section__description,
  .ics-cta-section__details,
  .ics-cta-section__details-list {
    width: 100%;
    min-height: 0;
  }

  .ics-cta-section__description {
    margin-top: 18px;
  }

  .ics-cta-section__button {
    width: 100%;
    height: 44px;
  }
}

@media (max-width: 767px) {
  .ics-cta-section__container {
    width: calc(100% - 40px);
  }

  .ics-cta-section__image {
    height: clamp(220px, 65vw, 300px);
  }

  .ics-cta-section__content {
    padding: 24px 20px 28px;
  }

  .ics-cta-section__eyebrow {
    font-size: 17px;
    line-height: 1.4;
  }

  .ics-cta-section__content h2 {
    margin-top: 5px;
  }

  .ics-cta-section__content h2::after {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.25;
    letter-spacing: -0.015em;
  }

  .ics-cta-section__description,
  .ics-cta-section__details-list {
    font-size: 14px;
    line-height: 1.55;
  }

  .ics-cta-section__details-list {
    margin-top: 12px;
    padding-left: 18px;
  }

  .ics-cta-section__details-list li + li {
    margin-top: 7px;
  }

  .ics-cta-section__button {
    margin-top: 22px;
  }
}

/* Footer deep-link destination feedback. */
.ics-product-card {
  scroll-margin-top: 120px;
}

.ics-product-card.ics-link-target {
  animation: ics-product-link-highlight 2.4s ease both;
}

@keyframes ics-product-link-highlight {
  0%, 100% {
    box-shadow: none;
    outline-color: transparent;
  }

  15%, 70% {
    box-shadow:none;
    outline: 3px solid #1462d1;
    outline-offset: 4px;
  }
}

/* ================================
   TABLET RESPONSIVE ONLY
   768px - 1024px
================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .ics-products-container,
  .ics-cta-section__container,
  .faq-section {
    width: 94% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ensure cards fill the grid */
  .ics-product-card {
    width: 100% !important;
  }
}
