/* =========================================================
   FLEXTHERM HOMEPAGE
   START
   ========================================================= */

/* Alleen op de homepage: de eigen trustbalk onder de hero vervangt de globale header-USP. */
body:has(main.ft-home) #top.ft-site-header .ft-site-header__usps {
  display: none !important;
}

.ft-home {
  --ft-home-blue: #68a2b9;
  --ft-home-blue-dark: #315c6d;
  --ft-home-blue-deep: #244653;
  --ft-home-green: #4caf7d;
  --ft-home-green-dark: #35845c;
  --ft-home-ink: #292b23;
  --ft-home-muted: #657179;
  --ft-home-surface: #ffffff;
  --ft-home-surface-soft: #f4f7f8;
  --ft-home-surface-blue: #eaf2f4;
  --ft-home-line: #dce5e8;
  --ft-home-radius-sm: 8px;
  --ft-home-radius-md: 12px;
  --ft-home-radius-lg: 18px;
  --ft-home-shadow-soft: 0 12px 34px rgba(36, 70, 83, .08);
  --ft-home-shadow: 0 20px 48px rgba(36, 70, 83, .14);
  overflow: hidden;
  background: #fff;
  color: var(--ft-home-ink);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.ft-home,
.ft-home *,
.ft-home *::before,
.ft-home *::after {
  box-sizing: border-box;
}

.ft-home img {
  max-width: 100%;
}

.ft-home h1,
.ft-home h2,
.ft-home h3,
.ft-home h4 {
  color: var(--ft-home-blue-deep);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.ft-home h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: .98;
}

.ft-home h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 750;
  letter-spacing: -.026em;
  line-height: 1.08;
}

.ft-home h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.ft-home p {
  color: var(--ft-home-muted);
  line-height: 1.7;
}

.ft-home a {
  text-underline-offset: 3px;
}

.ft-home__section {
  position: relative;
  margin: 0;
  padding: 88px 0;
}

.ft-home__section--compact {
  padding: 38px 0;
}

.ft-home__section--surface {
  background: var(--ft-home-surface-soft);
}

.ft-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--ft-home-green-dark);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ft-home__eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--ft-home-green);
  content: "";
}

.ft-home__section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .72fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 36px;
}

.ft-home__section-head > p {
  margin: 0;
  font-size: 15px;
}

.ft-home__section-head--center {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.ft-home__section-head--center .ft-home__eyebrow {
  justify-content: center;
}

.ft-home__button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--ft-home-radius-sm);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.ft-home__button:hover {
  transform: translateY(-1px);
}

.ft-home__button--primary {
  border-color: var(--ft-home-green);
  background: var(--ft-home-green);
  color: #fff;
}

.ft-home__button--primary:hover {
  border-color: var(--ft-home-green-dark);
  background: var(--ft-home-green-dark);
  color: #fff;
}

.ft-home__button--light {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .96);
  color: var(--ft-home-blue-deep);
}

.ft-home__button--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ft-home-blue-dark);
}

.ft-home__button--outline-light {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: #fff;
}

.ft-home__button--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ft-home__text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ft-home-green-dark);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: underline;
}

.ft-home__text-link:hover {
  color: var(--ft-home-blue-dark);
}

.ft-home__text-link i {
  flex: 0 0 auto;
}

.ft-home__section-actions {
  margin: 28px 0 0;
  text-align: center;
}

/* Hero */
.ft-home__hero {
  position: relative;
  width: 100%;
  min-height: 610px;
  display: flex;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--ft-home-blue-deep);
  box-shadow: none;
  isolation: isolate;
}

.ft-home__hero-media,
.ft-home__hero-media::after {
  position: absolute;
  inset: 0;
}

.ft-home__hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ft-home__hero-media::after {
  background: linear-gradient(90deg, rgba(21, 47, 58, .96) 0%, rgba(27, 57, 69, .92) 39%, rgba(30, 60, 71, .55) 68%, rgba(30, 60, 71, .18) 100%);
  content: "";
}

.ft-home__hero-inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
}

.ft-home__hero-content {
  width: min(650px, 62%);
}

.ft-home__hero .ft-home__eyebrow {
  color: #bfe8d1;
}

.ft-home__hero-lead {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9) !important;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55 !important;
}

.ft-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-home__hero-brand {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 12px;
}

.ft-home__hero-brand strong {
  color: #fff;
}

.ft-home__hero-badge {
  position: absolute;
  right: 20px;
  bottom: 28px;
  width: min(330px, 30vw);
  margin: 0;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--ft-home-radius-sm);
  background: rgba(21, 47, 58, .74);
  color: rgba(255, 255, 255, .88) !important;
  font-size: 12px;
  line-height: 1.5 !important;
  backdrop-filter: blur(8px);
}

/* Trustrij */
.ft-home__trust {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--ft-home-line);
  background: #fff;
}

.ft-home__trust > .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.ft-home__trust ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.ft-home__trust li {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-right: 1px solid var(--ft-home-line);
  color: var(--ft-home-blue-deep);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.ft-home__trust li:first-child {
  border-left: 1px solid var(--ft-home-line);
}

.ft-home__trust li i,
.ft-home__story-content li i {
  width: 18px;
  height: 18px;
  display: grid;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--ft-home-green);
  color: #fff;
  font-size: 9px;
}

/* Bestelroutes */
.ft-home__route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ft-home__route-card {
  position: relative;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-md);
  background: #fff;
  box-shadow: var(--ft-home-shadow-soft);
  color: var(--ft-home-ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ft-home__route-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ft-home-blue);
  content: "";
}

.ft-home__route-card--accent::before {
  background: var(--ft-home-green);
}

.ft-home__route-card:hover {
  border-color: rgba(104, 162, 185, .65);
  box-shadow: var(--ft-home-shadow);
  transform: translateY(-3px);
}

.ft-home__route-number {
  margin-bottom: 24px;
  color: var(--ft-home-blue);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ft-home__route-card h3 {
  margin-bottom: 12px;
}

.ft-home__route-card p {
  flex: 1 1 auto;
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
}

/* SEO-intro */
.ft-home__seo-intro {
  display: grid;
  grid-template-columns: minmax(250px, .6fr) minmax(0, 1.4fr);
  gap: 44px;
  align-items: center;
  padding: 24px 28px;
  border-left: 4px solid var(--ft-home-blue);
  border-radius: 0 var(--ft-home-radius-sm) var(--ft-home-radius-sm) 0;
  background: var(--ft-home-surface-blue);
}

.ft-home__seo-intro h2 {
  font-size: clamp(22px, 2.3vw, 30px);
}

.ft-home__seo-intro p {
  margin: 0;
  font-size: 14px;
}

.ft-home__seo-intro a,
.ft-home__seo-card a,
.ft-home__backend-card a {
  color: var(--ft-home-blue-dark);
  font-weight: 650;
}

/* Toepassingen */
.ft-home__application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ft-home__application-card {
  position: relative;
  min-height: 390px;
  display: block;
  overflow: hidden;
  border-radius: var(--ft-home-radius-md);
  background: var(--ft-home-blue-deep);
  box-shadow: var(--ft-home-shadow-soft);
  color: #fff;
  text-decoration: none;
}

.ft-home__application-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.ft-home__application-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 42, 50, .04) 22%, rgba(20, 42, 50, .92) 100%);
}

.ft-home__application-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.ft-home__application-content small {
  margin-bottom: 7px;
  color: #bfe8d1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ft-home__application-content strong {
  color: #fff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.ft-home__application-content > span {
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
}

.ft-home__application-card:hover img {
  transform: scale(1.035);
}

/* Productkaarten */
.ft-home__product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin: 0;
}

.ft-home .ft-home__product-grid > .ft-product-card {
  width: auto !important;
  height: auto !important;
  min-width: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-md);
  background: #fff;
  box-shadow: var(--ft-home-shadow-soft);
  position: relative;
}

.ft-home .ft-product-card__media {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 220px;
  flex: 0 0 220px;
  display: flex;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ft-home-line);
  background: #f1f5f6;
}

.ft-home .ft-product-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(36, 70, 83, .06));
  content: "";
  pointer-events: none;
}

.ft-home .ft-product-card__media img.ft-product-card__image,
.ft-home .ft-product-card__media img.second-image {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center;
}

.ft-home .ft-product-card > .label,
.ft-home .ft-product-card__media > .label {
  position: absolute;
  top: 13px;
  right: auto;
  bottom: auto;
  left: 13px;
  z-index: 3;
  max-width: calc(100% - 70px);
  height: auto;
  min-height: 0;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ft-home .ft-product-card__wishlist {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ft-home-line);
  border-radius: 50%;
  background: #fff;
}

.ft-home .ft-product-card__body {
  width: 100%;
  height: auto !important;
  min-height: 0;
  flex: 0 0 auto;
  padding: 18px 18px 13px;
}

.ft-home .ft-product-card__title {
  margin: 0 0 14px;
  color: var(--ft-home-blue-deep);
  font-size: 16px;
  line-height: 1.36;
}

.ft-home .ft-product-card__title a {
  color: inherit;
}

.ft-home .ft-product-card__specs {
  width: 100%;
  min-height: 0 !important;
  display: table;
  margin: 0 !important;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11px;
}

.ft-home .ft-product-card__specs th,
.ft-home .ft-product-card__specs td {
  padding: 6px 8px;
  border: 0;
  border-bottom: 1px solid #edf1f2;
  line-height: 1.42;
  vertical-align: top;
}

.ft-home .ft-product-card__specs th {
  width: 44%;
  color: var(--ft-home-muted);
  font-weight: 500;
  text-align: left;
}

.ft-home .ft-product-card__specs td {
  color: var(--ft-home-ink);
  font-weight: 650;
  overflow-wrap: anywhere;
  text-align: right;
}

.ft-home .ft-product-card__actions {
  position: static;
  width: 100%;
  margin-top: auto;
  padding: 13px 18px 18px;
  border-top: 1px solid var(--ft-home-line);
  background: #fff;
}

.ft-home .ft-product-card__status {
  position: static;
  width: 100%;
  min-height: 23px;
  margin: 0 0 9px;
}

.ft-home .ft-product-card__status:empty {
  display: none;
}

.ft-home .ft-product-card .stock {
  position: static;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.ft-home .ft-product-card .stock.instock {
  background: rgba(76, 175, 125, .12);
  color: var(--ft-home-green-dark);
}

.ft-home .ft-product-card .stock.outofstock {
  background: #f6ece8;
  color: #944b37;
}

.ft-home .ft-product-card__configure,
.ft-home .ft-product-card__purchase {
  width: 100%;
  margin: 0;
}

.ft-home .ft-product-card__type {
  display: block;
  margin-bottom: 8px;
  color: var(--ft-home-blue-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ft-home .ft-product-card a.btn,
.ft-home .ft-product-card .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px !important;
  border: 1px solid var(--ft-home-green) !important;
  border-radius: var(--ft-home-radius-sm) !important;
  background: var(--ft-home-green) !important;
  color: #fff !important;
  font-weight: 750;
  text-decoration: none;
}

.ft-home .ft-product-card__configure .btn {
  width: 100%;
}

.ft-home .ft-product-card a.btn:hover,
.ft-home .ft-product-card .btn:hover {
  border-color: var(--ft-home-green-dark) !important;
  background: var(--ft-home-green-dark) !important;
}

.ft-home .custom-offerte-link {
  display: block;
  margin-top: 9px;
  color: var(--ft-home-blue-dark);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  text-decoration: underline;
}

.ft-home .ft-product-card__purchase {
  gap: 10px;
}

.ft-home .ft-product-card__purchase .price .current {
  color: var(--ft-home-blue-deep);
  font-size: 17px;
  font-weight: 750;
}

.ft-home .direct-buy {
  gap: 6px;
}

.ft-home .direct-buy input[type="number"] {
  width: 54px;
  min-height: 44px;
  padding: 7px;
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-sm);
}

.ft-home .ft-product-card .legal {
  margin-top: 9px;
  color: var(--ft-home-muted);
  font-size: 9px;
  line-height: 1.4;
}

/* Materiaalcategorieën */
.ft-home__section--materials {
  background: #fff;
}

.ft-home__material-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ft-home__material-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-md);
  background: #fff;
  box-shadow: var(--ft-home-shadow-soft);
  color: var(--ft-home-ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ft-home__material-card:hover {
  border-color: rgba(104, 162, 185, .65);
  box-shadow: var(--ft-home-shadow);
  transform: translateY(-3px);
}

.ft-home__material-media {
  position: relative;
  height: 150px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--ft-home-line);
  background: #eef3f4;
}

.ft-home__material-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.ft-home__material-card:hover .ft-home__material-media img {
  transform: scale(1.035);
}

.ft-home__material-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ft-home-surface-blue), #d7e5e9);
}

.ft-home__material-placeholder::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(49, 92, 109, .22);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.ft-home__material-body {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.ft-home__material-body > strong {
  color: var(--ft-home-blue-deep);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.3;
}

.ft-home__material-body > small {
  margin-top: 7px;
  color: var(--ft-home-muted);
  font-size: 11px;
}

.ft-home__material-body .ft-home__text-link {
  margin-top: auto;
  padding-top: 18px;
}

/* Sectoren */
.ft-home__sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ft-home__sector-card {
  position: relative;
  min-height: 290px;
  display: block;
  overflow: hidden;
  border-radius: var(--ft-home-radius-md);
  background: var(--ft-home-blue-deep);
  box-shadow: var(--ft-home-shadow-soft);
  text-decoration: none;
}

.ft-home__sector-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.ft-home__sector-card--no-image {
  background: linear-gradient(135deg, var(--ft-home-blue-deep), var(--ft-home-blue-dark));
}

.ft-home__sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 50, 60, .06) 18%, rgba(23, 50, 60, .9) 100%);
}

.ft-home__sector-card--no-image .ft-home__sector-overlay {
  background: radial-gradient(circle at 82% 16%, rgba(104, 162, 185, .34), transparent 36%);
}

.ft-home__sector-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.ft-home__sector-content strong {
  color: #fff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

.ft-home__sector-content > span {
  margin-top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
}

.ft-home__sector-card:hover img {
  transform: scale(1.035);
}

/* Merkenbanner */
.ft-home__section--brands {
  padding: 64px 0;
  border-top: 1px solid var(--ft-home-line);
  border-bottom: 1px solid var(--ft-home-line);
  background: #fff;
}

.ft-home__brands-banner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ft-home-line);
  border-left: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-md);
  overflow: hidden;
  background: #fff;
}

.ft-home__brand {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--ft-home-line);
  border-bottom: 1px solid var(--ft-home-line);
}

.ft-home__brand img {
  width: 150px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(.85);
}

.ft-home__brand > span {
  color: var(--ft-home-blue-deep);
  font-weight: 700;
  text-align: center;
}

/* Technisch verhaal */
.ft-home__section--story {
  padding: 96px 0;
  background: #fff;
}

.ft-home__story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: stretch;
}

.ft-home__story-media {
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--ft-home-radius-lg) 0 0 var(--ft-home-radius-lg);
  background: #edf2f3;
}

.ft-home__story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ft-home__story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  border-radius: 0 var(--ft-home-radius-lg) var(--ft-home-radius-lg) 0;
  background: var(--ft-home-blue-deep);
}

.ft-home__story-content .ft-home__eyebrow {
  color: #bfe8d1;
}

.ft-home__story-content h2 {
  color: #fff;
}

.ft-home__story-content > p {
  margin: 22px 0;
  color: rgba(255, 255, 255, .82);
}

.ft-home__story-content ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ft-home__story-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 13px;
}

.ft-home__story-content .ft-home__text-link {
  color: #bfe8d1;
}

/* Bestaande dynamische nieuwssectie */
.ft-home__news-shell {
  margin: 0;
  padding: 86px 0;
  background: var(--ft-home-surface-soft);
}

.ft-home__news-shell .blog-articles {
  margin: 0;
  padding: 0;
  background: transparent;
}

.ft-home__news-shell .blog-articles .top-bar,
.ft-home__news-shell .blog-articles .bar {
  background: transparent;
}

.ft-home__news-shell .blog-articles h2,
.ft-home__news-shell .blog-articles h3,
.ft-home__news-shell .blog-articles h4 {
  color: var(--ft-home-blue-deep);
}

.ft-home__news-shell .blog-articles .article,
.ft-home__news-shell .blog-articles article {
  overflow: hidden;
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-md);
  background: #fff;
  box-shadow: var(--ft-home-shadow-soft);
}

.ft-home__news-shell .blog-articles .article img,
.ft-home__news-shell .blog-articles article img {
  width: 100%;
  opacity: 1 !important;
  object-fit: cover;
}

/* SEO en backendcontent */
.ft-home__section--seo {
  background: #fff;
}

.ft-home__seo-card,
.ft-home__backend-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-lg);
  background: #fff;
  box-shadow: var(--ft-home-shadow-soft);
}

.ft-home__seo-card h2 {
  max-width: 900px;
}

.ft-home__seo-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.ft-home__seo-columns p {
  margin: 0;
  font-size: 14px;
}

.ft-home__section--backend-content {
  padding-top: 0;
  background: #fff;
}

.ft-home__backend-card {
  width: 100%;
}

.ft-home__backend-card > h1 {
  display: none;
}

.ft-home__backend-card h2 {
  margin: 42px 0 17px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.ft-home__backend-card h2:first-child {
  margin-top: 0;
}

.ft-home__backend-card h3 {
  margin: 28px 0 12px;
}

.ft-home__backend-card p,
.ft-home__backend-card li {
  font-size: 14px;
  line-height: 1.75;
}

.ft-home__backend-card .tags,
.ft-home__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--ft-home-line);
}

.ft-home__backend-card .tags a,
.ft-home__tags a {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ft-home-surface-blue);
  color: var(--ft-home-blue-dark);
  font-size: 11px;
  text-decoration: none;
}

.ft-home__backend-card #faq-general {
  width: 100%;
  max-width: none;
  margin: 54px 0 0;
  padding: 42px 0 0;
  border-top: 1px solid var(--ft-home-line);
}

.ft-home__backend-card #faq-general h2,
.ft-home__backend-card #faq-general h3 {
  color: var(--ft-home-blue-deep);
}

.ft-home__backend-card #faq-general [class*="faq"],
.ft-home__backend-card #faq-general details {
  border-color: var(--ft-home-line);
}

/* Kennis en dynamische FAQ — eerdere goedgekeurde tweekolomsopbouw */
.ft-home__section--knowledge {
  padding-top: 0;
  background: #fff;
}

.ft-home__knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .76fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.ft-home__knowledge-copy {
  min-width: 0;
  padding: 18px 0;
}

.ft-home__knowledge-copy h2 {
  max-width: 700px;
  font-size: clamp(28px, 3.3vw, 44px);
}

.ft-home__knowledge-copy > p {
  max-width: 760px;
  margin: 19px 0 0;
  color: var(--ft-home-muted);
  font-size: 15px;
  line-height: 1.78;
}

.ft-home__knowledge-copy h3 {
  margin: 31px 0 0;
  color: var(--ft-home-blue-deep);
  font-size: clamp(19px, 2vw, 24px);
}

.ft-home__knowledge-links {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.ft-home__knowledge-links a {
  width: fit-content;
  color: var(--ft-home-blue-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ft-home__knowledge-links a:hover {
  color: var(--ft-home-green-dark);
}

.ft-home__knowledge-links i {
  display: inline-block;
  margin-left: 4px;
  font-size: 8px;
}

.ft-home__faq-panel {
  min-width: 0;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--ft-home-line);
  border-radius: var(--ft-home-radius-lg);
  background: var(--ft-home-surface-soft);
  box-shadow: var(--ft-home-shadow-soft);
}

.ft-home__faq-panel > h2 {
  margin-bottom: 20px;
  font-size: clamp(25px, 2.5vw, 32px);
}

.ft-home__faq-panel #faq-general {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ft-home__faq-panel #faq-general > h2:first-child,
.ft-home__faq-panel #faq-general > h3:first-child {
  display: none;
}

.ft-home__faq-panel #faq-general .faq-background {
  display: none;
}

.ft-home__faq-panel #faq-general .faq-container {
  position: static;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0;
  transform: none;
  text-align: left;
}

.ft-home__faq-panel #faq-general .faq-title-main,
.ft-home__faq-panel #faq-general .faq-description {
  display: none;
}

.ft-home__faq-panel #faq-general .faq-item {
  width: 100%;
  max-width: none;
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid var(--ft-home-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(36, 70, 83, .045);
}

.ft-home__faq-panel #faq-general .faq-item:last-child {
  margin-bottom: 0;
}

.ft-home__faq-panel #faq-general .faq-question {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ft-home__faq-panel #faq-general .faq-title,
.ft-home__faq-panel #faq-general .faq-title:hover,
.ft-home__faq-panel #faq-general .faq-question.active .faq-title {
  color: var(--ft-home-blue-deep) !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.ft-home__faq-panel #faq-general .faq-arrow {
  position: absolute;
  top: 50%;
  right: 19px;
  display: grid;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) !important;
  place-items: center;
  color: var(--ft-home-blue-dark);
  font-size: 0;
}

.ft-home__faq-panel #faq-general .faq-arrow i {
  display: none;
}

.ft-home__faq-panel #faq-general .faq-arrow::before {
  content: "+";
  font-size: 22px;
  font-weight: 750;
  line-height: 1;
}

.ft-home__faq-panel #faq-general .faq-question.active .faq-arrow::before {
  content: "−";
}

.ft-home__faq-panel #faq-general .faq-answer {
  display: none;
  padding: 0 20px 21px;
  color: var(--ft-home-muted);
  font-size: 14px;
  line-height: 1.62;
}

.ft-home__faq-panel #faq-general .faq-question.active + .faq-answer {
  display: block;
}

.ft-home__faq-panel #faq-general .faq-answer > :first-child {
  margin-top: 0;
}

.ft-home__faq-panel #faq-general .faq-answer > :last-child {
  margin-bottom: 0;
}

/* Advieskaart */
.ft-home__section--advice {
  padding: 36px 0 78px;
  background: #fff;
}

.ft-home__advice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 40px 44px;
  border-radius: var(--ft-home-radius-lg);
  background: var(--ft-home-blue-deep);
  box-shadow: var(--ft-home-shadow);
}

.ft-home__advice-card .ft-home__eyebrow {
  color: #bfe8d1;
}

.ft-home__advice-card h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.ft-home__advice-card p {
  max-width: 730px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .8);
}

.ft-home__advice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ft-home__instagram {
  margin: 0;
}

@media (max-width: 1000px) {
  .ft-home__knowledge-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ft-home__faq-panel {
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .ft-home__route-grid,
  .ft-home__application-grid,
  .ft-home__sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-home__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-home__material-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ft-home__brands-banner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ft-home__section {
    padding: 70px 0;
  }

  .ft-home__section--compact {
    padding: 32px 0;
  }

  .ft-home__hero,
  .ft-home__hero-inner {
    min-height: 580px;
  }

  .ft-home__hero-content {
    width: min(680px, 82%);
  }

  .ft-home__section-head {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .ft-home__seo-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ft-home__story-grid {
    grid-template-columns: 1fr;
  }

  .ft-home__story-media {
    min-height: 420px;
    border-radius: var(--ft-home-radius-lg) var(--ft-home-radius-lg) 0 0;
  }

  .ft-home__story-content {
    border-radius: 0 0 var(--ft-home-radius-lg) var(--ft-home-radius-lg);
  }

  .ft-home__seo-columns {
    grid-template-columns: 1fr;
  }

  .ft-home__advice-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ft-home__advice-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body:has(main.ft-home) #top.ft-site-header .ft-site-header__wrap.fixed + .below-main,
  body:has(main.ft-home) #top.ft-site-header .ft-site-header__wrap + .below-main {
    margin-top: 108px !important;
  }

  .ft-home__section {
    padding: 58px 0;
  }

  .ft-home__hero,
  .ft-home__hero-inner {
    min-height: 640px;
  }

  .ft-home__hero-media img {
    object-position: 60% center;
  }

  .ft-home__hero-media::after {
    background: linear-gradient(180deg, rgba(21, 47, 58, .93) 0%, rgba(21, 47, 58, .78) 62%, rgba(21, 47, 58, .88) 100%);
  }

  .ft-home__hero-inner {
    align-items: flex-start;
    padding-top: 62px;
    padding-bottom: 102px;
  }

  .ft-home__hero-content {
    width: 100%;
  }

  .ft-home__hero-actions,
  .ft-home__advice-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ft-home__hero-actions .ft-home__button,
  .ft-home__advice-actions .ft-home__button {
    width: 100%;
  }

  .ft-home__hero-badge {
    right: 16px;
    bottom: 18px;
    left: 16px;
    width: auto;
  }

  .ft-home__trust ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .ft-home__trust li {
    min-width: 0;
    min-height: 64px;
    padding: 10px 12px;
    border-top: 1px solid var(--ft-home-line);
    border-right: 1px solid var(--ft-home-line);
    border-left: 0;
    font-size: 11px;
  }

  .ft-home__trust li:nth-child(-n + 2) {
    border-top: 0;
  }

  .ft-home__trust li:nth-child(2n) {
    border-right: 0;
  }

  .ft-home__route-grid,
  .ft-home__application-grid,
  .ft-home__product-grid,
  .ft-home__material-grid,
  .ft-home__sector-grid {
    grid-template-columns: 1fr;
  }

  .ft-home__route-card {
    min-height: 0;
  }

  .ft-home__application-card {
    min-height: 380px;
  }

  .ft-home .ft-product-card__media {
    height: 250px;
    min-height: 250px;
    flex-basis: 250px;
  }

  .ft-home__material-card {
    display: grid;
    grid-template-columns: 38% 62%;
  }

  .ft-home__material-media {
    height: 100%;
    min-height: 172px;
    border-right: 1px solid var(--ft-home-line);
    border-bottom: 0;
  }

  .ft-home__material-body {
    min-height: 172px;
    padding: 17px;
  }

  .ft-home__brands-banner {
    display: flex;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ft-home__brands-banner::-webkit-scrollbar {
    display: none;
  }

  .ft-home__brand {
    min-width: 48%;
    min-height: 100px;
    flex: 0 0 48%;
    border: 1px solid var(--ft-home-line);
    scroll-snap-align: start;
  }

  .ft-home__brand + .ft-home__brand {
    border-left: 0;
  }

  .ft-home__news-shell .blog-articles .d-flex {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .ft-home__news-shell .blog-articles .article,
  .ft-home__news-shell .blog-articles article {
    width: 100% !important;
    max-width: none !important;
  }

  .ft-home__news-shell .blog-articles .article img,
  .ft-home__news-shell .blog-articles article img {
    height: 210px;
  }

  .ft-home__section--story {
    padding: 58px 0;
  }

  .ft-home__story-media {
    min-height: 310px;
  }

  .ft-home__story-content {
    padding: 30px 24px;
  }

  .ft-home__seo-card,
  .ft-home__backend-card,
  .ft-home__faq-panel {
    padding: 24px 20px;
    border-radius: var(--ft-home-radius-md);
  }

  .ft-home__knowledge-copy {
    padding: 0;
  }

  .ft-home__knowledge-grid {
    gap: 34px;
  }

  .ft-home__advice-card {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-home *,
  .ft-home *::before,
  .ft-home *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   FLEXTHERM HOMEPAGE
   EINDE
   ========================================================= */
