/* ============================================================
 * parts_pc.css
 * Desktop styles for all content area components:
 * hero, overview, strengths, main products, products grid, news.
 * Responsive overrides are in parts_sp.css.
 * ============================================================
 * - Hero / Banner
 * - Stats Bar
 * - Overview
 * - Strengths
 * - Main Products
 * - Feature Bar
 * - Products Grid
 * - News
 * ============================================================ */

/* ============================================================
   HERO / BANNER  (Swiper slider)
   ============================================================ */
.hero {
  position: relative;
  background-color: #0b0f17;
  overflow: hidden;
  margin-top:45px;
}

/* ----- Slider shell ----- */
.hero__slider {
  position: relative;
  width: 100%;
  height: 940px;
  min-height: 940px;
  max-height: 940px;
  overflow: hidden;
}
.hero__slider .swiper-wrapper {
  align-items: stretch;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ----- Slide background image + overlay ----- */
.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide__media--banner-right {
  background-image: url("../../common-files/img/banner-right.png");
}
.hero-slide-first{
  background-image: url("../../common-files/img/bnr-main.jpg");
}
.hero-slide-first-sub{
  background-image: url("../../common-files/img/bnr-sec.jpg");
}
.hero-slide__media--banner-main {
  background-image: url("../../common-files/img/banner.jpg");
}
.hero-slide__overlay {
  position: absolute;
  inset: 0 0 0px 0;
background: linear-gradient(90deg, rgba(10, 13, 18, 0.8) 15.42%, rgba(18, 20, 28, 0.5) 61.67%);
background: url(../../common-files/img/bnr-over.png);

}
.hero-slide-first .hero-slide__overlay{
  display: none;
}


/* ----- Slide content (uses .container for width/inline padding) ----- */
.hero-slide__content {
  position: relative;
  z-index: 2;
  padding-block: 204px;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    /* height: 30px; */
    padding: 4.5px 16.5px;
    border: 1px solid #fff;
    border-radius: 4px;
    /* background-color: rgba(255, 255, 255, 0.06); */
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-block-end: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  max-width: 940px;
  font-size: clamp(36px, 5vw, 65px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-block-end: 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__heading--light { color: #ffffff; }
.hero__heading--red   { color: var(--c-primary); }
.hero__heading > span {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero__heading > span:nth-child(1) { transition-delay: 0.35s; }
.hero__heading > span:nth-child(2) { transition-delay: 0.5s; }

.hero__sub {
    max-width: 620px;
    font-size: clamp(15px, 1.15vw, 18px);
    font-weight: 400;
    line-height: 30px;
    color: #D1D9E8;
    margin-block-end: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 0.65s, transform 0.9s ease 0.65s;
    letter-spacing: 0%;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.8s, transform 0.9s ease 0.8s;
}

/* Animate-in on active slide */
.swiper-slide-active .hero__pill,
.swiper-slide-active .hero__heading > span,
.swiper-slide-active .hero__sub,
.swiper-slide-active .hero__ctas {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Decorative watermark ----- */
.hero__watermark {
    position: absolute;
    right: clamp(-60px, 3vw, 15px);
    bottom: clamp(-20px, 5vw, 110px);
    z-index: 1;
    /* font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0%;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 15%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    leading-trim: CAP_HEIGHT; */
}

/* ----- Pagination ----- */
.hero__pagination.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: clamp(28px, 7vw, 238px);
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
}
.hero__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.hero__pagination .swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

/* ----- Values band ----- */
.hero__values {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.hero__values::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(216, 18, 21, 0.18) 0%, transparent 55%),
        linear-gradient(90deg, #14181f 0%, #1c2230 60%, #14181f 100%);
          background: rgb(10 13 18 / 90%);
    opacity: 0.8;          /* Sirf background layer ki opacity */
    backdrop-filter: blur(4px);
    z-index: -1;
}

.hero__values-inner {
    position: relative;
    z-index: 1;
}
/* .hero__values {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #ffffff;
    background: radial-gradient(circle at 85% 50%, rgba(216, 18, 21, 0.18) 0%, transparent 55%),
    linear-gradient(90deg, #14181f 0%, #1c2230 60%, #14181f 100%);
    overflow: hidden;
    background: rgb(10 13 18 / 90%);
    backdrop-filter: blur(4px);
    opacity: 80%;
} */
/* .hero__values::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
} */
/* .hero__values::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-primary) 50%, transparent 100%);
} */

.hero__values-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 20px);
  padding-block: clamp(20px, 2.2vw, 22px);
}

.hero__values-accent {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  background: #D81215;
  border-radius: 2px;
}

.hero__values-body {
  flex: 1;
  min-width: 0;
}

.hero__values-title {
    font-size: clamp(16px, 4.3vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-block-end: 6px;
    color: var(--c-primary);
}

.hero__values-text {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
}

.hero__values-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.04);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.hero__values-cta svg {
  transition: transform 0.25s ease;
}
.hero__values-cta:hover {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  color: #ffffff;
}
.hero__values-cta:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   OVERVIEW / BUSINESS SEGMENTS
   ============================================================ */
.overview {
  padding-block: var(--section-v-pad);
}
.overview__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 50px);
    max-width: 1720px;
    padding-inline: 20px;
}
/* ----- Split header (heading left, lead right) ----- */
.overview__header {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}
.overview__header-left .section-label {
  margin-block-end: 8px;
}
.overview__heading {
  font-size: clamp(22px, 2.6vw, 42px) !important;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.22;
  color: #1a1f29;
  margin-block: 18px 0;
}
.overview__header-right {
  padding-block-start: clamp(40px, 4vw, 45px);
}
.overview__lead {
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  color: #656C7C;
  line-height: 1.75;
  max-width: 750px;
}

/* ----- Centered "Our Products" header ----- */
.overview__header--center {
  display: block;
  text-align: center;
}
.overview__header--center .overview__heading {
  font-size: clamp(28px, 4vw, 60px) !important;
  margin: 0;
  font-weight: 700;
}

/* ----- Browse-all button + product search ----- */
.overview__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.overview__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 760px;
  height: 56px;
  background-color: #656C7C;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--ease);
}
.overview__more:hover { background-color: #4d4d4d; }

.product-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 920px;
    height: 52px;
    background-color: #FFFFFF0D;
    /* border: 1px solid #ffffff1f; */
    border-radius: 4px;
    overflow: hidden;
}
.product-search__input {
  flex: 1;
  width: auto;
  border: none;
  outline: none;
  padding: 0 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--c-text-faint);
  
  background: transparent;
}
.product-search__input::placeholder { color: #9aa0ab; }
.product-search__btn {
  flex-shrink: 0;
  width: 56px;
  border: none;
  background-color: var(--c-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--ease);
}
.product-search__btn:hover { background-color: #b80f12; }

/* ----- Card grid ----- */
.overview__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.segment-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(20, 28, 44, 0.06);
    transition: transform var(--ease), box-shadow var(--ease);
    border: 1px solid #E0E0E5;
    text-decoration: none;
}
.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 28, 44, 0.12);
}

.segment-card__media {
  position: relative;
  /* aspect-ratio: 4 / 3; */
  overflow: hidden;
  background-color: #f0f1f4;
}
.segment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.segment-card__body {
  position: relative;
  padding: 20px 20px 20px 34px;
}
/*.segment-card__body::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset-block: 22px 28px;*/
/*  inset-inline-start: 16px;*/
/*  width: 3px;*/
/*  background-color: var(--c-primary);*/
/*  border-radius: 20px;*/
/*}*/
.segment-card__body::before {
    content: "";
    position: absolute;
    width: 3px;
    background-color: var(--c-primary);
    border-radius: 20px;
    height: 26px;
    left: 20px;
}
.segment-card__title {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  color: #1a1f29;
  line-height: 1.3;
}
.segment-card__text {
  font-size: 13px;
  font-weight: 400;
  color: #656C7C;
  line-height: 1.55;
}

/* ============================================================
   STRENGTHS
   ============================================================ */
.strengths {
  background-color: #ffffff;
}
.strengths__header {
  padding-block: clamp(50px, 6vw, 80px) clamp(40px, 5vw, 40px);
  background-color: #ffffff;
}
.strengths__sub {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  color: #656C7C;
  margin-block-start: 10px;
  line-height: 1.55;
  max-width: 940px;
}

.strength {
  position: relative;
  background-color: #ffffff;
}
.strength:last-child { margin-block-end: 0; }

/* Container override so panel can extend to container's right edge */
.strength__inner {
  padding-inline: 0;
  background-color: #FAFAFA;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 25px 25px 25px 0;
  gap: 0px ;
}
.strength__inner.white-bg { background-color: #ffffff; } 
/* Left red accent bar (sits at the container's left edge) */
.strength__accent {
  position: absolute;
  inset-block: 0;
  width: 3px;
  background-color: var(--c-primary);
  pointer-events: none;
  z-index: 1;
}

.strength__accent.second{
  background-color: rgba(216, 18, 21, 0.5);
}

.strength__text {
    position: relative;
    padding: clamp(50px, 5vw, 70px) clamp(2px, 4vw, 0px) clamp(50px, 5vw, 70px) clamp(180px, 23vw, 270px);
}
.strength__number {
  position: absolute;
  inset-block-start: clamp(40px, 4.2vw, 60px);
  inset-inline-start: clamp(30px, 6vw, 120px);
  font-size: clamp(70px, 5vw, 100px);
  font-weight: 800;
  letter-spacing: -2px;
  color: #f3c4c5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.strength__heading {
  font-size: clamp(16px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.3;
  color: #1a1f29;
  margin-block-end: 28px;
}

.strength__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strength__list li {
  position: relative;
  padding-inline-start: 25px;
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  color: #656C7C;
}
.strength__list li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='18' viewBox='0 0 15 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.33778 11.9029C5.24004 11.7063 3.73344 8.69292 2.19192 8.31384C1.67226 8.1972 1.25592 8.30016 1.25592 8.30016C0.683699 8.4663 0.266639 8.9622 0.103919 9.3951C-0.221881 10.359 0.279059 11.0939 0.768479 11.7826C1.74732 13.1596 2.69736 14.5195 3.6762 15.8967C4.01028 16.3539 4.34994 16.8341 4.88688 17.0203C5.58528 17.2645 6.38322 16.9198 6.85824 16.3606C7.35648 15.7955 7.59498 15.0739 7.83924 14.3755L8.27538 13.1634C8.77524 11.8127 9.3273 10.4738 9.90798 9.1521C10.4887 7.83036 11.0983 6.52644 11.76 5.23386C12.4217 3.94128 13.0889 2.6721 13.8313 1.40868C14.0226 1.09134 14.1909 0.779756 14.3822 0.462416C14.4172 0.404816 14.6548 0.0759563 14.6144 0.0124163C14.5741 -0.0513037 14.2559 0.150116 14.1866 0.167216C13.5967 0.460616 13.0295 0.846356 12.5203 1.26702C11.4841 2.13678 10.6382 3.18042 9.82698 4.26474C8.11553 6.67812 6.61366 9.23347 5.33778 11.9029Z' fill='%23656C7C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.strength__image {
  overflow: hidden;
}
.strength__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 920px;
    margin-left: auto;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products {
  padding-block: var(--section-v-pad);
}
.products__header {
  margin-block-end: clamp(32px, 4vw, 40px);
}
.products__sub {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--c-text-body);
  margin-block-start: 5px;
  line-height: 1.7;
}

/* 5-column grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.box-parent .te-box-grid{
  padding:40px 40px 40px 40px;
  position:relative;
}
.box-parent .te-box-grid .strength__accent {
    display: none;
}
.box-parent .te-box-grid:nth-child(even) {
    background: #ffffff;
}
.box-parent .te-box-grid.first-card{
  padding-top:0;
}
.box-parent .te-box-grid:nth-child(odd) {
    background: #fafafa;
}
.box-parent .te-box-grid:nth-child(even) .strength__accent {
    background-color:rgba(216, 18, 21, 0.5);
}
/* Product card */
.product-card {
  background-color: var(--c-text-white);
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background-color: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
  border-radius: 8px 8px 0 0;
  z-index: 1;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card__link {
  display: block;
  height: 100%;
}
.product-card__figure {
  height: 193px;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__body {
    padding: 18.5px 19px 18.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #242933;
  line-height: 1;
}

/* Diagonal arrow */
.product-card__arrow {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-block-start: 2px solid var(--c-primary);
  border-inline-end: 2px solid var(--c-primary  );
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: border-color var(--ease);
}
.product-card__arrow::before{
    content: "";
    width: 14px;
    height: 2px;
    border-radius: 6px;
    background-color: var(--c-primary);
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    top: 4px;
    right: -2px;
    transition: all var(--ease);
}
.product-card:hover .product-card__arrow::before{
  background-color: var(--c-primary);
}
.product-card:hover .product-card__arrow {
  border-color: var(--c-primary);
}
.product-card:hover .product-card__name{
  color: var(--c-primary);
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  padding-block: var(--section-v-pad);
  background-color: #ffffff;
}
.news__header {
  margin-block-end: clamp(32px, 4vw, 50px);
}
.news__heading {
  font-size: clamp(22px, 3.5vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #1a1f29;
  margin-block-start: 18px;
  line-height: 1.15;
}

/* ----- Latest Information: full-width news feed (homepage) ----- */
.news__header--center { text-align: center; }
.news__header--center .news__heading { margin-block-start: 0; }

.news-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  border-block-start: 1px solid #e6e8ec;
}
.news-feed__item {
  border-block-end: 1px solid #e6e8ec;
}
.news-feed__link {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  padding-block: 20px;
  color: inherit;
}
.news-feed__links{
    display: flex;
  align-items: center;
   gap: clamp(16px, 2.5vw, 40px);
   width: 100%;
}
.news-feed__date {
  flex-shrink: 0;
  width: 120px;
  font-size: 14px;
  font-weight: 500;
  color: #656C7C;
}
.news-feed__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 30px;
  background-color: #656C7C;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
.news-feed__title {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #242933;
  line-height: 1.5;
  transition: color var(--ease);
}
.news-feed__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #9aa0ab;
  transition: color var(--ease);
}
.news-feed__link:hover .news-feed__title,
.news-feed__link:hover .news-feed__icon { color: var(--c-primary); }

.news-feed__footer {
  display: flex;
  justify-content: center;
  margin-block-start: clamp(28px, 4vw, 44px);
}
.news-feed__archives {
display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 760px;
    height: 56px;
    background-color: #656C7C;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--ease);
}
.news-feed__archives:hover { background-color: #4d4d4d; }

.news__layout {
  display: grid;
  grid-template-columns: 1fr 424px;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

/* Featured cards */
.news__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  background-color: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0px 4px 16px 0px #0000000D;

}
.news-card:hover {
  border-color: rgba(216, 18, 21, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.08);
}
.news-card__figure {
  height: 189px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__img { transform: scale(1.04); }

.news-card__body {
  padding: 19px 19px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 14px;
}
.news-card__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background-color: var(--c-primary-dim);
  background: #D812150D;
  border: 1px solid var(--c-primary-rim);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--c-primary);
  text-transform: uppercase;
  line-height: 1;
}
.news-card__date {
  font-size: 11px;
  font-weight: 600;
  color: #656C7C;
  line-height: 1;
}
.news-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #242933;
  line-height: 1.5;
  margin-block-end: 12px;
}
.news-card__excerpt {
  font-size: 13px;
  font-weight: 400;
  color: #656C7C;
  line-height: 1.54;
  flex: 1;
  margin-block-end: 16px;
}
.news-card__more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--c-primary);
  margin-block-start: auto;
  transition: color var(--ease);
}
.news-card__more:hover { color: #b80f12; }

/* News list sidebar */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-list__item {
  display: flex;
  gap: 14px;
  padding-block: 15px;
  border-block-end: 1px solid #e6e8ec;
  align-items: stretch;
}
.news-list__item:last-child { border-block-end: none; }

.news-list__dot {
    width: 6px;
    border-radius: 6px;
    background-color: var(--c-primary);
    flex-shrink: 0;
    height: 6px;
    margin-top: 5px;
}
.news-list__content {
  flex: 1;
}
/* .news-list__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 6px;
} */
 .news-list__meta {
    display: flex;
    flex-direction: column;
}
.news-list__meta time {
  font-size: 11px;
  color:#656C7C;
  font-weight: 600;
}
.news-list__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--c-primary);
  text-transform: capitalize;
}
.news-list__title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1f29;
  line-height: 1.5;
  transition: color var(--ease);
}
.news-list__title:hover { color: var(--c-primary); }
.news-list .news-list__item:last-child {
  padding-block-end: 0;
}
/* ============================================================
   LEGAL PAGES (privacy-policy, terms-of-use, cookies-policy,
   accessibility, sitemap)
   ============================================================ */
.legal-page {
  /* Fixed header: header-top(45) + two-row nav(142) + breadcrumb(~45) = 232px */
  padding-block-start: calc(232px + 48px);
  padding-block-end: 80px;
  min-height: 60vh;
  background-color: var(--c-light-100);
}

.legal-page__header {
  border-block-end: 2px solid var(--c-border-light);
  padding-block-end: 24px;
  margin-block-end: 48px;
}
.legal-page__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--c-text-dark);
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.legal-page__updated {
  font-size: 13px;
  color: var(--c-text-muted);
}

.legal-page__body {
  max-width: 800px;
}

.legal-section {
  margin-block-end: 48px;
}
.legal-section__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-dark);
  border-inline-start: 3px solid var(--c-primary);
  padding-inline-start: 12px;
  margin: 0 0 16px;
}
.legal-section__subheading {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-dark);
  margin: 24px 0 10px;
}
.legal-section p {
  font-size: 15px;
  color: var(--c-text-body);
  line-height: 1.8;
  margin-block-end: 12px;
}
.legal-section p:last-child { margin-block-end: 0; }

.legal-list {
  padding-inline-start: 20px;
  margin-block-end: 12px;
}
.legal-list li {
  font-size: 15px;
  color: var(--c-text-body);
  line-height: 1.8;
  margin-block-end: 6px;
}

.legal-link {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--ease);
}
.legal-link:hover { opacity: 0.75; }

.legal-address {
  font-style: normal;
  font-size: 15px;
  color: var(--c-text-dark);
  line-height: 1.8;
  margin-block-start: 12px;
  padding: 16px 20px;
  background-color: var(--c-light-50);
  border: 1px solid var(--c-border-light);
  border-radius: 4px;
}

.legal-note {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-block-start: 8px;
}

/* Legal table (terms browser matrix) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-block: 16px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text-body);
}
.legal-table th {
  background-color: var(--c-ui-bg);
  font-weight: 600;
  color: var(--c-text-white);
}
.legal-table tr:nth-child(even) td {
  background-color: var(--c-light-50);
}

/* Sitemap layout */
.sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px 48px;
}
.sitemap__section { /* intentional � each section is a grid cell */ }
.sitemap__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-block-end: 2px solid var(--c-primary);
  padding-block-end: 8px;
  margin: 0 0 16px;
}
.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemap__item {
  font-size: 14px;
}
.sitemap__item--child {
  padding-inline-start: 16px;
  position: relative;
}
.sitemap__item--child::before {
  content: '�';
  position: absolute;
  inset-inline-start: 0;
  color: var(--c-text-muted);
}
.sitemap__link {
  color: var(--c-text-body);
  transition: color var(--ease);
}
.sitemap__link:hover { color: var(--c-primary); }
.sitemap__link[aria-current="page"] {
  color: var(--c-primary);
  font-weight: 600;
}

/* ============================================================
   INNER PAGE BANNER
   Short dark hero for all section / product / news / contact pages.
   Full fixed header height: header-top(45) + header-nav(80) + breadcrumb(~41) = 166px.
   Add 48px of breathing room ? 214px total.
   ===========g1053
   ================================================= */
.page-banner {
    position: relative;
    padding-block-start: 108px;
    padding-block-end: 108px;
    overflow: hidden;
    /* Clear the fixed header: header-top(45) + two-row nav(142) + breadcrumb(~45) = 232px */
   	 margin-top: 232px;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.25; */
}
.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,15,18,0.85) 40%, rgba(13,15,18,0.55) 100%);
    background: url(../../common-files/img/auto-brd-ol.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.page-banner__content {
  position: relative;
  z-index: 1;
}
.page-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-block-end: 12px;
}
.page-banner__title {
  font-size: clamp(28px, 4vw, 66px);
  font-weight: 800;
  color: var(--c-text-white);
  line-height: 1.09;
  letter-spacing: -1.55px;
  margin-block-end: 15px;
}
.page-banner__sub {
  font-size: 16px;
  color: var(--c-text-medium);
  max-width: 540px;
  line-height: 1.56;
}

/* ============================================================
   SECTION PAGE LAYOUT (about, solutions, news overview)
   ============================================================ */
.section-page {
  padding-block: var(--section-v-pad);
  background-color: var(--c-light-100);
}
.section-page--dark {
  background-color: var(--c-dark-800);
}
.section-page--alt {
  background-color: var(--c-light-50);
}
.section-fab, .section-page--alte{
  background: #fff;
 }
 .section-fab{
  padding-bottom: 0;
 }
/* Two-column split: text + image */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

.split-layout__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-block-end: 12px;
}
.split-layout__heading {
  font-size: clamp(16px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.15;
  margin-block-end: 20px;
}
.split-layout__heading--light { color: var(--c-text-white); }
.split-layout__body {
  font-size: 15px;
  color: var(--c-text-body);
  line-height: 1.85;
  margin-block-end: 14px;
}
.split-layout__body:last-child { margin-block-end: 0; }
.split-layout__body--light { color: var(--c-text-medium); }
.split-layout__cta {
  margin-block-start: 28px;
}
.split-layout__image {
  border-radius: 4px;
  overflow: hidden;
  /* aspect-ratio: 4/3; */
}
.split-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Value cards row */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background-color: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: 6px;
  padding: 28px 24px;
}
.value-card--dark {
  background-color: var(--c-dark-700);
  border-color: var(--c-border);
}
.value-card__number {
  font-size: 40px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-block-end: 12px;
}
.value-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 8px;
}
.value-card--dark .value-card__title { color: var(--c-text-white); }
.value-card__body {
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.7;
}
.value-card--dark .value-card__body { color: var(--c-text-medium); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* Banner title red accent (e.g. "About Us") */
.page-banner__title .accent { color: var(--c-primary); }

/* Global reach: text + flag chips on the left, stat cards on the right */
.reach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.flag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 28px;
}
.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-dark);
}
.flag-chip__flag { font-size: 16px; line-height: 1; }
.flag-chip__flag img{
  width: 20px;
  border: 1px solid var(--c-border-light);
    border-radius: 50px;
}

/* Statistic cards with a red top rule */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-top: 3px solid var(--c-primary);
  border-radius: 4px;
  padding: 38px 16px 34px;
  text-align: center;
}
.stat-card__icon {
  display: flex;
  justify-content: center;
  margin-block-end: 18px;
  color: var(--c-primary);
}
.stat-card__number {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: var(--c-text-dark);
  line-height: 1;
  margin-block-end: 12px;
}
.stat-card__label {
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.5;
}

/* "What drives us forward" driver cards */
.drivers-intro { max-width: 760px; }
.drivers-intro__sub {
  font-size: 15px;
  color: var(--c-text-body);
  line-height: 1.7;
  margin-block-start: 16px;
}
.drivers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-block-start: 40px;
}
.driver-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-left: 3px solid var(--c-primary);
  border-radius: 4px;
  padding: 28px 26px 34px;
}
.driver-card__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-block-end: 14px;
}
.driver-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 20px;
}
.driver-card__body {
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS SECTION PAGE (index listing)
   ============================================================ */
.products-page__intro {
  max-width: 720px;
  margin-block-end: 56px;
}
.products-page__intro p {
  font-size: 15px;
  /* color: var(--c-text-body); */
  line-height: 1.85;
  margin-block-end: 12px;
}
/* Re-uses .products__grid and .product-card from homepage */

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding-block: var(--section-v-pad);
  background-color: var(--c-light-100);
}
.product-detail__intro {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  margin-block-end: 72px;
}
.product-detail__text {}
.product-detail__heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 20px;
  line-height: 1.3;
}
.product-detail__body {
  font-size: 15px;
  color: var(--c-text-body);
  line-height: 1.85;
  margin-block-end: 14px;
}
.product-detail__body:last-child { margin-block-end: 0; }
.product-detail__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: sticky;
  top: 180px; /* fixed header (166px) + 14px gap */
}
.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-block: 32px;
}
.spec-table caption {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary);
  text-align: left;
  padding-block-end: 12px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 16px;
  border-block-end: 1px solid var(--c-border-light);
  color: var(--c-text-body);
  vertical-align: top;
}
.spec-table th {
  width: 200px;
  font-weight: 600;
  color: var(--c-text-dark);
  background-color: var(--c-light-50);
}

/* Applications grid */
.applications {
  background-color: var(--c-dark-800);
  padding-block: var(--section-v-pad);
}
.applications__heading {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--c-text-white);
  margin-block-end: 40px;
}
.applications__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.application-tag {
  background-color: var(--c-dark-700);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-medium);
  letter-spacing: 0.5px;
}

/* Related products */
.related-products {
  padding-block: var(--section-v-pad);
  background-color: var(--c-light-50);
}
.related-products__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 32px;
}
/* Re-uses .products__grid and .product-card from homepage */

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-page {
  padding-block: var(--section-v-pad);
  background-color: var(--c-dark-800);
}
.news-page__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.news-page__articles {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Re-uses .news-card from homepage */
.news-card--listed {
  border-block-end: 1px solid var(--c-border);
  padding-block-end: 32px;
  margin-block-end: 32px;
}
.news-card--listed:last-child {
  border: none;
  margin: 0;
}
/* Sidebar */
.news-sidebar {}
.news-sidebar__section {
  margin-block-end: 40px;
}
.news-sidebar__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-faint);
  border-block-end: 1px solid var(--c-border);
  padding-block-end: 10px;
  margin-block-end: 16px;
}
.news-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-cat-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.news-cat-list a {
  color: var(--c-text-medium);
  transition: color var(--ease);
}
.news-cat-list a:hover { color: var(--c-primary); }
.news-cat-list span {
  color: var(--c-text-faint);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding-block: var(--section-v-pad);
  /* background-color: var(--c-light-100); */
  background-color: #fff;
}
.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 50px;
  align-items: start;
}
.contact-form__notice {
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.7;
  padding: 14px 16px;
  background: var(--c-light-50);
  border: 1px solid var(--c-border-light);
  border-radius: 4px;
}
.contact-form__notice a,
.contact-form__consent-text a {
  /* color: var(--c-primary); */
}
.contact-form__note .link-primary {
  color: var(--c-primary);
}
.contact-form__group {
  margin-block-end: 26px;
}
.contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-block-end: 7px;
  letter-spacing: 0;
  line-height: 100%;
}
.contact-form__required {
  color: #000000;
  margin-inline-start: 1px;
}
.contact-section__lead .link-primary{
  color: #656c7c;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  background-color: #FAFAFA;
  border: 1px solid #E0E0E5;
  border-radius: 4px;
  padding: 16px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--c-text-dark);
  transition: border-color var(--ease);
  outline: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #99A1B5;
    opacity: 1;
}

.contact-form__select option:disabled:checked {
    color: #99A1B5;
}

.contact-form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg width='8' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.89746 3.75L0.000347137 0L7.79458 0L3.89746 3.75Z' fill='%239EA5B4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 8px 4px;

    padding-right: 40px;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--c-primary);
}
.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__note {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-block-start: 6px;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block: 24px;
}
.contact-form__consent input[type="checkbox"] {
  margin-block-start: 3px;
  flex-shrink: 0;
  accent-color: var(--c-primary);
}
.contact-form__consent-text {
  font-size: 13px;
  color: var(--c-text-body);
  line-height: 1.538;
}
.contact-form__submit {
    width: fit-content;
    padding: 22px 44px;
    height: unset;
    line-height: 1;
}
/* Contact page � copyright-only footer has no inner section above it */
.site-footer__bottom--solo {
  padding-block: 28px;
}

/* Contact info panel */
.contact-info {
    background-color: var(--c-dark-800);
    border-radius: 8px;
    padding: 20px 26px 26px;
    border-top: 3px solid #D81215;
    margin-top: 20px;
}
.contact-info__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text-white);
    margin-block-end: 15px;
    padding-block-end: 16px;
    border-block-end: 1px solid var(--c-border);
    line-height: 100%;
}
#cf-consent {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #E0E0E5;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-block-start: 0;
}

#cf-consent:checked {
    background: #D81215;
    border-color: #D81215;
}

#cf-consent:checked::after {
    content: "✔";
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -58%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.cnc-link{
  text-decoration: underline;
}
.contact-info__item {
    margin-block-end: 12px;
    border-bottom: 1px solid #2E333D80;
    padding-bottom: 12px;
}
.contact-info__item:last-child { margin-block-end: 0;
border: none;
padding-bottom: 0; }
.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-primary);
  /* margin-block-end: 6px; */
}
.contact-info__value {
    font-size: 16px;
    color: var(--c-text-medium);
    line-height: 25px;
    font-weight: 400;
}
.contact-info__value a { color:  var(--c-text-medium) ;
text-decoration: underline; }
.contact-info__note {
  font-size: 12px;
  color: var(--c-text-faint);
  margin-block-start: 24px;
  padding-block-start: 16px;
  border-block-start: 1px solid var(--c-border);
  line-height: 1.6;
}

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  inset-block-end: 32px;
  inset-inline-end: 32px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color var(--ease);
}
.back-to-top img {
  width: 24px;
  height: 24px;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover { background-color: #b80f12; }

/* ============================================================
   COOKIE CONSENT BANNER (CMP)
   ============================================================ */
.cmp-banner {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 500;
  background-color: var(--c-dark-800);
  border-block-start: 1px solid var(--c-border);
  padding-block: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cmp-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cmp-banner__inner {
  max-width: 1688px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cmp-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--c-text-medium);
  line-height: 1.65;
}
.cmp-banner__link {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cmp-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   LANGUAGE TOGGLE DROPDOWN
   ============================================================ */
.lang-wrap {
  position: relative;
}
.lang-dropdown {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  background-color: var(--c-dark-750);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  min-width: 130px;
  padding-block: 4px;
  z-index: 400;
  display: none;
}
.lang-dropdown.is-open { display: block; }
.lang-dropdown__item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--c-text-faint);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease), background-color var(--ease);
}
.lang-dropdown__item:hover {
  color: var(--c-text-white);
  background-color: rgba(255,255,255,0.05);
}
.lang-dropdown__item.is-active { color: var(--c-primary); }
.lang-dropdown__note {
  font-size: 11px;
  color: var(--c-text-faint);
  padding: 6px 16px 10px;
  border-block-start: 1px solid var(--c-border);
  margin-block-start: 4px;
  line-height: 1.4;
}

/* ============================================================
   CONTACT PAGE � "Handling of Personal Information" popup
   Injected by main.js, 30s after landing on the contact page.
   ============================================================ */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: rgba(20, 28, 44, 0.55);
  animation: consent-fade 0.25s ease;
}
@keyframes consent-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.consent-modal__box {
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background-color: #ffffff;
  padding: 36px 40px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.consent-modal__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.3;
}
.consent-modal__text {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #444a55;
}
.consent-modal__link {
  color: var(--c-primary);
  text-decoration: underline;
}
.consent-modal__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block: 6px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #242933;
  cursor: pointer;
}
.consent-modal__checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.consent-modal__actions {
  display: flex;
  justify-content: flex-end;
}
.consent-modal__ok {
  min-width: 88px;
}
.consent-modal__ok:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
/* Lock background scroll while the consent popup is open */
body.consent-open {
  overflow: hidden;
}

/* ============================================================
   CAREER PAGE � "Upload Your Resume" form
   ============================================================ */
.resume-section {
  padding-block: clamp(56px, 8vw, 110px);
  background-color: #ffffff;
}
.resume-section__head {
  text-align: center;
  margin-block-end: clamp(34px, 5vw, 40px);
}
.resume-section__head .section-label { margin-block-end: 14px; }
.resume-section__head .section-label__bar { margin-block-end: 18px; }
.resume-section__heading {
  margin: 0;
  color: var(--c-text-dark);
}
.resume-card {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  background-color: #ffffff;
  border: 1px solid #ECECEF;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(20, 28, 44, 0.07);
  padding: clamp(28px, 5vw, 56px);
}
.resume-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.resume-form__group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
/* The drag-and-drop area spans the full width below the input fields */
.resume-form__group--file {
  grid-column: 1 / -1;
}
/* Inputs match the contact form exactly (font, colour, size, fill) */
.resume-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-block-end: 7px;
  letter-spacing: 0;
  line-height: 100%;
}
.resume-form__required {
  color: #000000;
  margin-inline-start: 1px;
}
.resume-form__input,
.resume-form__select {
  width: 100%;
  background-color: #FAFAFA;
  border: 1px solid #E0E0E5;
  border-radius: 4px;
  padding: 16px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--c-text-dark);
  transition: border-color var(--ease);
  outline: none;
}
.resume-form__input::placeholder {
  color: #99A1B5;
  opacity: 1;
}
.resume-form__input:focus,
.resume-form__select:focus {
  border-color: var(--c-primary);
}
.resume-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.89746 3.75L0.000347137 0L7.79458 0L3.89746 3.75Z' fill='%239EA5B4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 8px 4px;
}

/* ----- Drag & drop resume area ----- */
.resume-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  min-height: 150px;
  padding: 24px;
  text-align: center;
  border: 1px solid #E4E6EA;
  border-radius: 10px;
  background-color: #FAFAFB;
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}
.resume-dropzone:hover,
.resume-dropzone.is-dragover {
  border-color: var(--c-primary);
  background-color: #FCF2F2;
}
.resume-dropzone__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.resume-dropzone__icon {
  color: var(--c-primary);
  line-height: 0;
}
.resume-dropzone__text {
  max-width: 250px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #242933;
}
.resume-dropzone.has-file {
  border-color: var(--c-primary);
  border-style: solid;
}

/* ----- Submit ----- */
.resume-form__submit {
  margin-block-start: 36px;
}
.resume-form__success {
  margin-block-start: 24px;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #F1F8F0;
  border: 1px solid #BFE0BC;
  color: #2f6b2a;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================================
   RAW MATERIAL -> FINAL PRODUCT FLOW (automotive page)
   ============================================================ */
.flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(10px, 2vw, 28px);
    margin-block-start: clamp(28px, 4vw, 48px);
    max-width: 1440px;
    width: 100%;
    margin: auto;
}
.flow.flow-more{
  align-items: flex-start;
}
.flow-card {
  display: flex;
  flex-direction: column;
  /* padding: 16px; */
    background-color: var(--c-text-white);
    border: 1px solid var(--c-border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 16px 0px #0000000D;
    transition: box-shadow var(--ease), transform var(--ease);
}
/* Clipped frame so the corner tag's top-left rounds with the image */
.flow-card__frame {
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.flow-card__media {
  margin: 0;
}
.flow-card__media img {
  display: block;
  width: 100%;
  height: clamp(240px, 27vw, 400px);
  object-fit: cover;
}
/* Corner banner tag with a slanted bottom-right edge */
.flow-card__tag {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
  padding: 10px 46px 10px 26px;
  font-size: clamp(15px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%);
}
.flow-card__tag--raw   { background: #656C7C; }
.flow-card__tag--final { background: #656C7C; }
.flow-card__body {
  padding: 25px 30px 25px;
}
.flow-card__title {
  margin: 0 0 0;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.flow-card__title--raw   { color: var(--c-text-dark); }
.flow-card__title--final { color: var(--c-text-dark); }
.flow-card__text {
font-size: 16px;
    color: var(--c-text-body);
    line-height: 1.5;
}

/* Connecting arrow between the two cards — its box is exactly as tall as the
   media image and top-aligned with it, so the arrow stays centered on the
   image regardless of how tall the cards/columns grow */
.flow__arrow {
  align-self: center;
  height: clamp(240px, 27vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-more .flow__arrow {
  align-self: flex-start;
  margin-block-start: 20px;
}
.flow__arrow-img {
  width: clamp(44px, 6vw, 104px);
  height: auto;
}
/* Bulleted application list (rows with multiple applications) */
.flow-card__apps {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.flow-card__apps li {
  position: relative;
  padding-inline-start: 18px;
  font-size: 16px;
  color: var(--c-text-body);
  line-height: 1.5;
}
.flow-card__apps li::before {
  content: "";
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
}
/* Small reference / know-more link inside a flow card */
.flow-card__ref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-start: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
}
.flow-card__ref:hover { text-decoration: underline; }
.flow-card__note {
  margin-block-start: 8px;
  font-size: 13px;
  color: var(--c-text-body);
  opacity: 0.75;
}
.flow-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
/* Multi-application rows: give the application side more room (desktop) */
@media (min-width: 861px) {
  /* .flow--multi {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.7fr);
  } */
  /* Keep the left material card compact so it matches the small app cards */
  /* .flow--multi .flow-card__media img {
    height: clamp(170px, 15vw, 210px);
  } */
}
/* Group of application cards: 2 per line, wrap up/down */
.flow-app-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
  align-content: start;
}
/* Group of material cards (left side): 2 per line like the app cards */
.flow-mat-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
  align-content: start;
}
/* Optional short description inside a compact card */
.app-card__text {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--c-text-body);
  line-height: 1.5;
}
.app-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-text-white);
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px #0000000D;
  transition: box-shadow var(--ease), transform var(--ease);
}
.app-card:hover {
  box-shadow: 0px 8px 24px 0px #00000014;
  transform: translateY(-2px);
}
/* Clipped frame so the corner tag rounds with the image */
.app-card__frame {
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.app-card .flow-card__tag {
  padding: 8px 34px 8px 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.app-card__media { margin: 0; }
.app-card__media img {
  display: block;
  width: 100%;
  height: clamp(170px, 15vw, 210px);
  object-fit: cover;
}
.app-card__title {
  margin: 0;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text-dark);
  position:relative;
  margin-left: 10px;
}
.flow-card__title{
  position: relative;
}
/* .app-card__title:before,.flow-card__title:before {
      content: "";
    position: absolute;
    width: 3px;
    background-color: var(--c-primary);
    border-radius: 20px;
    height: 26px;
    left: 5px;
} */

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.search-page {
  padding-block-start: calc(232px + 48px);
  padding-block-end: 80px;
  min-height: 60vh;
  background-color: var(--c-light-100);
}
.search-page__header {
  border-block-end: 2px solid var(--c-border-light);
  padding-block-end: 24px;
  margin-block-end: 48px;
}
.search-page__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 8px;
}
.search-page__query {
  font-size: 15px;
  color: var(--c-text-body);
}
.search-page__query strong { color: var(--c-text-dark); font-weight: 600; }
.search-results { list-style: none; }
.search-result {
  padding-block: 24px;
  border-block-end: 1px solid var(--c-border-light);
}
.search-result__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 6px;
}
.search-result__title a {
  color: inherit;
  transition: color var(--ease);
}
.search-result__title a:hover { color: var(--c-primary); }
.search-result__url {
  font-size: 12px;
  color: var(--c-primary);
  margin-block-end: 8px;
  letter-spacing: 0.3px;
}
.search-result__desc {
  font-size: 14px;
  color: var(--c-text-body);
  line-height: 1.7;
}
.search-no-results {
  padding-block: 48px;
  text-align: center;
  color: var(--c-text-body);
}
.search-no-results__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 12px;
}
.search-form-inline {
  display: flex;
  gap: 12px;
  margin-block-start: 32px;
  max-width: 560px;
}
.search-form-inline__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--c-border-light);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--c-text-dark);
  background: #fff;
  outline: none;
  transition: border-color var(--ease);
}
.search-form-inline__input:focus { border-color: var(--c-primary); }
.search-form-inline__btn {
  height: 48px;
  padding: 0 24px;
  flex-shrink: 0;
}
.search-page__output { margin-block-start: 40px; }

/* ============================================================
   PHASE 8 � SOLUTIONS SUB-PAGES (Figma)
   ============================================================ */

/* Range intro � "OUR PRODUCTS" eyebrow + heading + helper line */
.range-intro {
  margin-block-end: 40px;
  /* max-width: 760px; */
  text-align: center;
}
.range-intro__heading {
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--c-text-dark);
    margin-block: 0;
    margin-bottom: 0px;
}
.range-intro__sub {
    font-size: 16px;
    color: var(--c-text-body);
    line-height: 1.85;
    font-weight: 400;
}
/* Solution card grid � Automotive / Special Fibers / Industrial */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-text-white);
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px #0000000D;
  transition: box-shadow var(--ease), transform var(--ease);
}
.solution-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.solution-card__figure {
  overflow: hidden;
  background-color: var(--c-light-50);
}
.solution-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-card:hover .solution-card__img { transform: scale(1.04); }
.solution-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px 30px 25px;
}
.solution-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.2;
  margin-block-end: 10px;
}
.solution-card__text {
  font-size: 16px;
  color: var(--c-text-body);
  line-height: 1.5;
  margin-block-end: 15px;
}
.solution-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* margin-block-start: auto; */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-primary);
}
/* .solution-card__more::after {
  content: '?';
  font-size: 14px;
  transition: transform var(--ease);
} */
.solution-card:hover .solution-card__more::after { transform: translateX(4px); }

/* CTA band � "Ready to collaborate on your next project?" */
.cta-band {
  position: relative;
  overflow: hidden;
  background-color: var(--c-dark-900);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.28; */
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,15,18,0.88) 40%, rgba(13,15,18,0.6) 100%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(48px, 6vw, 72px);
}
.cta-band__heading {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.43;
  color: var(--c-text-white);
  margin-block-end: 13px;
}
.cta-band__sub {
  font-size: 15px;
  color: var(--c-text-medium);
  line-height: 1.7;
}

/* -- Functional Fabrics � process timeline ---------------- */
.process-intro {
  max-width: 1100px;
  margin-block-end: 40px;
}
.process-intro__heading {
    font-size: clamp(24px, 2.8vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--c-text-dark);
    margin-block: 18px 18px;
}
.process-intro__body {
  font-size: 16px;
  color: var(--c-text-body);
  line-height: 1.85;
}
/* Full-width alternating bands; container lives inside each step */
.process-timeline {
  display: flex;
  flex-direction: column;
}
.process-step:nth-child(odd)  { background-color: var(--c-light-50); }
.process-step:nth-child(even) { background-color: #ffffff; }
.process-step__inner {
  position: relative;
  display: grid;
  grid-template-columns: 180px 180px minmax(0, 1fr) clamp(320px, 30vw, 510px);
  gap: 52px;
  align-items: center;
  padding-block: 44px;
}
.process-step__num {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    color: var(--c-primary-dim);
    line-height: 1;
    /* text-align: center; */
}
/* Continuous vertical connector line, aligned to the marker-column centre */
.process-step__inner::before {
  content: '';
  position: absolute;
  left: 19.5%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color:  rgb(247 208 208);;
  z-index: 0;
}
.process-step:first-child .process-step__inner::before { top: 68%; }
.process-step:last-child  .process-step__inner::before { bottom: 68%; }
/* Red dot centred in the gap between circles (at each band boundary) */
.process-step__inner::after {
  content: '';
  position: absolute;
  left: 19.55%;
  bottom: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--c-primary);
  transform: translate(-50%, 50%);
  z-index: 1;
}
.process-step:last-child .process-step__inner::after { display: none; }
.cta-band__inner .btn--lg {
    height:46px;
    padding: 14px 30px;
    line-height: 1;
    font-size: 14px;
    letter-spacing: 1.2px;
}
/* Red marker circle with soft halo ring (white gap + pink rim) */
.process-step__marker {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 0 6px #ffffff, 0 0 0 8px var(--c-primary-dim); */
}
.process-step__marker::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 10px solid rgb(247 208 208);
  border-radius: 50%;
  z-index: 0;
}
.process-step__icon {  height: 80px; color: #fff; }
.process-step__icon svg { width: 100%; height: 100%; display: block; }
.process-step__title {
    font-size: clamp(22px, 2.4vw, 42px);
    font-weight: 800;
    color: var(--c-primary);
    margin-block-end: 10px;
    line-height: 1.285;
}
.process-step__text {
  font-size: 17px;
  color: var(--c-text-body);
  line-height: 1.8;
  max-width: 621px;
  width: 100%;
}
.process-step__image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.process-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- Functional Fabrics � key original materials ---------- */
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-block-start: 40px;
}
.material-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-text-white);
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.material-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}
.material-card__logo {
  /* height: 150px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 24px; */
  /* border-block-end: 1px solid var(--c-border-light); */
}
.material-card__logo img {  width: 100%;
object-fit: cover; }
/* .material-card__logo--dark { background-color: var(--c-dark-900); } */
/* Text fallback brand mark (used until real logo assets are supplied) */
.material-card__brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-text-dark);
}
.material-card__logo--dark .material-card__brand { color: var(--c-text-white); }
.material-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}
.material-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 10px;
}
.material-card__text {
  font-size: 16px;
  color: var(--c-text-body);
  line-height: 1.75;
  margin-block-end: 18px;
}
sup {
    font-size: 16px;
    vertical-align: top;
    position: relative;
    top: -2px;
}
.material-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-primary);
}
.material-card__more::after { content: '?'; transition: transform var(--ease); }
.material-card:hover .material-card__more::after { transform: translateX(4px); }
.section-map{
  padding-block: 20px;
  padding-right: 20px;
  background-color: #fff;
}
/* -- Functional Fabrics � global production bases --------- */
.global-bases__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}
.global-bases__heading {
  font-size: clamp(24px, 2.6vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.153;
  color: var(--c-text-dark);
  margin-block: 18px 18px;
}
.global-bases__body {
    font-size: 17px;
    color: var(--c-text-body);
    line-height: 1.76;
}
.global-bases__text {
    margin-left: clamp(0px, 6vw, 100px);
}
.global-bases__map {
  border-radius: 6px;
  overflow: hidden;
}
.global-bases__map img { width: 100%; height: auto; }

/* -- Contact redesign (Figma) � 2-col form + help box ----- */
.contact-form--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.contact-form--grid .contact-form__group--full,
.contact-form--grid .contact-form__consent { grid-column: 1 / -1; }
.contact-section__head { margin-block-end: 32px; }
.contact-section__title {
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--c-text-dark);
    margin-block: 18px 12px;
    margin-bottom: 5px;
}
.contact-section__lead {
    font-size: 16px;
    color: var(--c-text-body);
    line-height: 1.85;
    font-weight: 400;
    letter-spacing: 0%;
}
.contact-info__topline {
  height: 3px;
  background-color: var(--c-primary);
  margin: -36px -32px 28px;
}
.contact-help {
    margin-block-start: 24px;
    padding: 22px 24px;
    border: 1px solid var(--c-primary-rim);
    border-radius: 8px;
    background-color: var(--c-primary-dim);
    background: #D812150D;
    border: 1px solid #D8121538;
    border-top: 3px solid #D81215;
}
.contact-help__top {
  height: 3px;
  background-color: var(--c-primary);
  margin: -24px -28px 18px;
  border-radius: 6px 6px 0 0;
}
.contact-help__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-block-end: 6px;
  line-height: 100%;
}
.contact-help__text {
  font-size: 13px;
  color: var(--c-text-body);
  margin-block-end: 10px;
  font-weight: 400;
  line-height: 100%;
}
.contact-help__mail {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    letter-spacing: 0.2px;
    line-height: 100%;
}
.contact-form__group--full{
  margin-block-end: 0;
}
.last-card{
  padding-bottom:0
}
.sc-bg{
  background-color:#fff;
}