/* ============================================================
   Intercell Theme — Main Stylesheet (exact match to HTML design)
   ============================================================ */

/* ───── Self-hosted Inter Font ───── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ───── Reset & Tokens ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #087DB8;
  --dark: #1D1D1D;
  --gray-100: #F2F4F7;
  --gray-200: #EAECF0;
  --gray-300: #D0D5DD;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-900: #101828;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px 0 rgba(16,24,40,.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1440px;
  --px: 120px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}
body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ───── Layout helpers ───── */
.section { width: 100%; max-width: var(--max); margin: 0 auto; padding: 96px var(--px); }
.section--gray { background: var(--gray-100); }
.eyebrow { display: inline-flex; align-items: center; position: relative; }
.eyebrow__dot { position: absolute; left: -8px; top: -8px; width: 32px; height: 32px; pointer-events: none; z-index: 1; }
.eyebrow__pill { z-index: 2; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 400; line-height: 20px; padding: 4px 12px; border-radius: var(--radius-sm); letter-spacing: -.05px; white-space: nowrap; }
.eyebrow__pill--white { background: var(--white); color: var(--dark); }
/* Hide whole eyebrow wrapper when pill is empty (admin liet eyebrow leeg) */
.eyebrow:has(.eyebrow__pill:empty) { display: none; }
/* Global site-wide override: dot uitschakelen via Site Settings → Style */
body.no-eyebrow-dots .eyebrow__dot { display: none; }
.section-title { font-size: 48px; font-weight: 600; line-height: 1.25; letter-spacing: -1.44px; color: var(--dark); }
.section-title--center { text-align: center; }
.section-body { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--gray-600); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: var(--radius); font-size: 16px; font-weight: 500; line-height: 24px; cursor: pointer; transition: opacity .15s, transform .1s; box-shadow: var(--shadow-xs); border: 1px solid transparent; }
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--secondary { background: var(--white); color: var(--gray-700); border-color: var(--gray-200); }
.btn--icon { padding: 14px; }
.heading-stack { display: flex; flex-direction: column; gap: 12px; }

/* hamburger hidden on desktop */
.nav-hamburger { display: none; }

/* Global icon size lock */
.nav-phone img,
.drawer-phone img,
.about__check-item img,
.benefit-card__icon img,
.form-input img,
.form-phone__dd img,
.footer__contact-item img,
.btn img,
.blog-card__read img,
.testimonials__nav img,
.testimonials__nav button img {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  object-fit: contain;
}
.about__image .play,
.process__img .play { width: 56px !important; height: 56px !important; }

/* ───── NAV ───── */
nav { position: absolute; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--px); z-index: 100; background: rgba(29,29,29,.05); }
nav .logo { display: flex; align-items: center; height: 44px; flex-shrink: 0; }
nav .logo img { height: 100%; width: auto; max-width: 220px; object-fit: contain; display: block; }
nav .nav-right { display: flex; align-items: center; }
nav .nav-links { display: flex; align-items: center; }
nav .nav-link { padding: 24px 16px; font-size: 16px; font-weight: 500; color: var(--white); line-height: 24px; white-space: nowrap; transition: opacity .15s; }
nav .nav-link:hover { opacity: .8; }
nav .nav-phone { display: flex; align-items: center; gap: 10px; padding: 24px 16px; font-size: 16px; font-weight: 500; color: var(--white); }
nav .nav-phone img { width: 24px; height: 24px; }
nav .nav-divider { width: 100%; height: 1px; background: var(--white); opacity: .1; position: absolute; bottom: 0; left: 0; }

/* ───── Hero ───── */
.hero-section { position: relative; width: 100%; height: 780px; display: flex; align-items: center; padding: 72px 0 0; overflow: hidden; }
.hero__container { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-section--slider .hero__bg img { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-section--slider .hero__bg img.is-active { opacity: 1; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 24px; display: flex; gap: 10px; justify-content: center; z-index: 5; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s, transform .2s; }
.hero__dot:hover { background: rgba(255,255,255,.75); }
.hero__dot.is-active { background: var(--white); transform: scale(1.15); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 26%), linear-gradient(61.3deg,rgba(0,0,0,.5) 24%,rgba(0,0,0,0) 41%), linear-gradient(90deg,rgba(0,0,0,.5),rgba(0,0,0,.5)); }
.hero__content { max-width: 588px; display: flex; flex-direction: column; gap: 32px; }
.hero__meta { display: flex; flex-direction: column; gap: 16px; }
.hero__title { font-size: 72px; font-weight: 700; line-height: 88px; letter-spacing: -2.16px; color: var(--white); }
.hero__sub { font-size: 18px; font-weight: 400; line-height: 28px; color: #F2F4F7; }
.hero__actions { display: flex; gap: 16px; }
.hero__scroll { position: absolute; bottom: 33px; left: 50%; transform: translateX(-50%); width: 43px; height: 10px; z-index: 2; }
.hero__scroll img { width: 100%; height: 100%; }

/* ───── Page Hero (compact banner for sub-pages) ───── */
.page-hero { position: relative; width: 100%; height: 360px; display: flex; align-items: center; justify-content: center; padding: 72px var(--px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35)); }
.page-hero__content { position: relative; z-index: 2; max-width: var(--max); width: 100%; margin: 0 auto; text-align: center; display: flex; justify-content: center; }
.page-hero__title { font-size: 48px; font-weight: 700; line-height: 1.1; letter-spacing: -1.44px; color: var(--white); margin: 0; max-width: 720px; text-align: center; }

/* ───── Rich Text (article body) ───── */
.rich-text { margin-inline: auto; color: var(--gray-700); font-size: 17px; line-height: 1.7; }
.rich-text--narrow { max-width: 720px; }
.rich-text--medium { max-width: 960px; }
.rich-text--full   { max-width: none; }
.rich-text > * + * { margin-top: 20px; }
.rich-text h1 { font-size: 40px; font-weight: 700; line-height: 1.2; letter-spacing: -1.2px; color: var(--dark); margin-top: 48px; }
.rich-text h2 { font-size: 28px; font-weight: 600; line-height: 1.3; letter-spacing: -.56px; color: var(--dark); margin-top: 40px; }
.rich-text h3 { font-size: 22px; font-weight: 600; line-height: 1.35; letter-spacing: -.44px; color: var(--dark); margin-top: 32px; }
.rich-text h4 { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--dark); margin-top: 24px; }
.rich-text p  { font-size: 17px; line-height: 1.7; color: var(--gray-700); }
.rich-text a  { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .15s ease; }
.rich-text a:hover { color: var(--dark); }
.rich-text strong { color: var(--dark); font-weight: 600; }
.rich-text em { font-style: italic; }
.rich-text ul, .rich-text ol { padding-left: 24px; }
.rich-text ul li, .rich-text ol li { margin-top: 8px; font-size: 17px; line-height: 1.7; color: var(--gray-700); }
.rich-text ul li::marker { color: var(--blue); }
.rich-text blockquote { border-left: 3px solid var(--blue); padding: 4px 0 4px 20px; margin: 28px 0; color: var(--gray-700); font-style: italic; }
.rich-text blockquote p { font-size: 18px; line-height: 1.6; }
.rich-text code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; background: var(--gray-100); padding: 2px 6px; border-radius: 4px; color: var(--dark); }
.rich-text pre { background: var(--gray-100); padding: 16px 20px; border-radius: var(--radius); overflow-x: auto; }
.rich-text pre code { background: transparent; padding: 0; }
.rich-text img, .rich-text .wp-block-image img { width: 100%; height: auto; border-radius: var(--radius-md); margin: 28px 0; }
.rich-text figure { margin: 28px 0; }
.rich-text figure figcaption { font-size: 14px; color: var(--gray-500); margin-top: 8px; text-align: center; }
.rich-text hr { border: 0; height: 1px; background: var(--gray-200); margin: 36px 0; }
.rich-text table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 16px; }
.rich-text table th, .rich-text table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); text-align: left; }
.rich-text table th { background: var(--gray-100); font-weight: 600; color: var(--dark); }

/* Native WP gallery/columns inside rich text */
.rich-text .wp-block-columns { display: flex; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.rich-text .wp-block-column { flex: 1 1 0; min-width: 240px; }
.rich-text .wp-block-column > * + * { margin-top: 20px; }

/* ───── About ───── */
.about { display: flex; gap: 24px; align-items: center; }
.about__text { flex: 1; display: flex; flex-direction: column; gap: 32px; padding-right: 24px; }
.about__text-inner { display: flex; flex-direction: column; gap: 16px; }
.about__heading { display: flex; flex-direction: column; gap: 12px; }
.about__checklist { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.about__check-item { display: flex; gap: 8px; align-items: center; font-size: 16px; color: var(--gray-600); }
.about__check-item img { width: 20px; height: 20px; flex-shrink: 0; }
.about__image { position: relative; width: 588px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; display: flex; align-items: flex-start; justify-content: flex-end; padding: 16px; min-height: 420px; }
.about__image img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.about__image .play { position: relative; z-index: 2; width: 56px; height: 56px; }
.about--image-left { flex-direction: row-reverse; }
.about--image-left .about__text { padding-right: 0; padding-left: 24px; }

/* ───── Products ───── */
.products { display: flex; flex-direction: column; gap: 48px; }
.products__grid { display: flex; gap: 24px; }
.products__col { display: flex; flex-direction: column; gap: 24px; flex: 1; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 24px; overflow: hidden; position: relative; }
.product-card__img { position: relative; flex: 1; min-height: 200px; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; }
.product-card__info { display: flex; flex-direction: column; gap: 16px; }
.product-card__title { font-size: 32px; font-weight: 475; line-height: 40px; letter-spacing: -.96px; color: var(--dark); }
.product-card__title--sm { font-size: 24px; line-height: 36px; letter-spacing: -.48px; }
.product-card__desc { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--gray-600); }
.product-card--horizontal { flex-direction: row; align-items: center; padding-left: 24px; padding-right: 0; }
.product-card--horizontal .product-card__info { flex: 1; padding: 64px 0; }
.product-card--horizontal .product-card__img { flex-shrink: 0; width: 351px; min-height: 280px; overflow: hidden; }
.product-card--horizontal .product-card__img img { height: 100%; object-fit: cover; }
.product-card--corner-img { padding-top: 160px; justify-content: flex-end; min-height: 338px; }
.product-card--corner-img .product-card__corner { position: absolute; top: -1px; right: -1px; width: 260px; height: 212px; overflow: hidden; }
.product-card--corner-img .product-card__corner img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 var(--radius-md) 0 0; }
.products__vector { position: absolute; right: 16px; top: 16px; width: 120px; height: 120px; pointer-events: none; }

/* ───── Process ───── */
.process { display: flex; flex-direction: column; gap: 48px; }
.process__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.process__body { display: flex; gap: 24px; align-items: stretch; }
.process__img { flex: 1; border-radius: var(--radius-md); overflow: hidden; min-height: 500px; position: relative; display: flex; align-items: flex-start; justify-content: flex-end; padding: 16px; }
.process__img img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); opacity: 0; transition: opacity .45s cubic-bezier(.2,.7,.2,1); }
.process__img img.bg.is-active { opacity: 1; }
.process__img .play { position: relative; z-index: 2; width: 56px; height: 56px; }
.process__steps { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.process__row { display: flex; gap: 24px; }
.step-card { flex: 1; background: var(--gray-100); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; gap: 24px; border: 1px solid var(--gray-200); }
.step-card--active { border-color: var(--blue); }
.step-card__num { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -1.08px; color: var(--dark); }
.step-card__body { display: flex; flex-direction: column; gap: 16px; line-height: 28px; }
.step-card__title { font-size: 20px; font-weight: 600; letter-spacing: -.4px; color: var(--dark); }
.step-card__desc { font-size: 18px; color: var(--gray-600); }

/* ───── Applications ───── */
.applications { display: flex; flex-direction: column; gap: 48px; }
.applications__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.app-grid { display: flex; flex-direction: column; gap: 24px; }
.app-row { display: flex; gap: 24px; }
.app-img { flex: 1; height: 420px; border-radius: var(--radius-lg); overflow: hidden; }
.app-img img { width: 100%; height: 100%; object-fit: cover; }
.app-img--fixed { flex: none; width: 384px; }

/* ───── Benefits ───── */
.benefits { display: flex; flex-direction: column; gap: 48px; }
.benefits__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.benefits__grid { display: flex; flex-direction: column; gap: 24px; }
.benefits__row { display: flex; gap: 24px; }
.benefit-card { flex: 1; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
.benefit-card__icon { background: var(--blue); border: 1px solid var(--blue); border-radius: var(--radius); padding: 14px; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; }
.benefit-card__icon img { width: 20px; height: 20px; }
.benefit-card__info { display: flex; flex-direction: column; gap: 12px; }
.benefit-card__title { font-size: 20px; font-weight: 600; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.benefit-card__desc { font-size: 16px; line-height: 24px; color: var(--gray-600); }

/* ───── Testimonials ───── */
.testimonials { display: flex; flex-direction: column; gap: 48px; }
.testimonials__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.testimonials__body { display: flex; gap: 24px; align-items: stretch; }
.testimonials__img { width: 411px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }
.testimonials__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.testimonials__img img.switching { opacity: 0; }
.testimonials__card { flex: 1; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; gap: 48px; }
.testimonials__quote { font-size: 32px; font-weight: 400; line-height: 40px; letter-spacing: -.96px; color: var(--dark); }
.testimonials__author { font-size: 16px; line-height: 24px; color: var(--gray-600); margin-top: 24px; }
.testimonials__controls { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.testimonials__avatars { display: flex; gap: 8px; align-items: center; }
.testimonials__avatar { width: 48px; height: 48px; border-radius: var(--radius); overflow: hidden; opacity: .5; cursor: pointer; transition: opacity .2s; }
.testimonials__avatar.active { opacity: 1; border: 1.2px solid var(--blue); }
.testimonials__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonials__nav { display: flex; gap: 8px; }

/* ───── FAQ ───── */
.faq { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.faq__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 792px; }
.faq__list { display: flex; flex-direction: column; gap: 16px; width: 792px; }
.faq-item { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color .2s; }
.faq-item.open { border-color: var(--blue); }
.faq-item__header { display: flex; gap: 24px; justify-content: space-between; align-items: flex-start; }
.faq-item__q { font-size: 18px; font-weight: 475; line-height: 28px; color: var(--dark); flex: 1; }
.faq-item__icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--dark); border-radius: 2px; transition: transform .2s, opacity .2s; }
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; opacity: 1; }
.faq-item.open .faq-item__icon::after { opacity: 0; transform: rotate(90deg); }
.faq-item__answer { font-size: 16px; line-height: 24px; color: var(--gray-600); overflow: hidden; max-height: 0; transition: max-height .3s ease, margin-top .3s; }
.faq-item.open .faq-item__answer { max-height: 200px; margin-top: 12px; }

/* ───── Contact ───── */
.contact__inner { display: flex; gap: 24px; align-items: stretch; }
.contact__img { flex: 1; border-radius: var(--radius-lg); overflow: hidden; min-height: 500px; }
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__form-wrap { flex: 1; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 32px; }
.contact__form-head { display: flex; flex-direction: column; gap: 24px; }
.contact__form-title-group { display: flex; flex-direction: column; gap: 12px; }
.contact__form-title-sub { display: flex; flex-direction: column; gap: 12px; }
.contact__form-title { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -1.08px; color: var(--dark); }
.contact__form-desc { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; line-height: 20px; color: var(--gray-700); }
.form-input { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px 14px; transition: border-color .15s; }
.form-input:focus-within { border-color: var(--blue); }
.form-input img { width: 20px; height: 20px; flex-shrink: 0; }
.form-input input, .form-input textarea { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 16px; line-height: 24px; color: var(--gray-500); background: transparent; }
.form-input textarea { resize: none; height: 80px; }
.form-phone { display: flex; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.form-phone__dd { display: flex; align-items: center; gap: 4px; padding: 10px 14px; border-right: 1px solid var(--gray-200); font-size: 16px; color: var(--gray-900); cursor: pointer; }
.form-phone input { flex: 1; border: none; outline: none; padding: 10px 14px; font-family: var(--font); font-size: 16px; color: var(--gray-500); }

/* ───── Blogs ───── */
.blogs { display: flex; flex-direction: column; gap: 48px; }
.blogs__header { display: flex; align-items: flex-end; gap: 24px; }
.blogs__header-text { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-cards { display: flex; gap: 24px; }
.blog-card { flex: 1; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 16px; display: flex; flex-direction: column; gap: 24px; }
.blog-card__img { height: 220px; border-radius: var(--radius-md); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__content { display: flex; flex-direction: column; gap: 24px; }
.blog-card__meta { display: flex; flex-direction: column; gap: 8px; }
.blog-card__date { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.blog-card__title { font-size: 20px; font-weight: 475; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.blog-card__read { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; color: var(--blue); cursor: pointer; }
.blog-card__read img { width: 20px; }

/* ───── CTA Video ───── */
.cta { position: relative; width: 100%; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); }
.cta__blur { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 794px; height: 212px; filter: blur(80px); background: rgba(8,125,184,.35); border-radius: 50%; }
.cta__inner { position: relative; z-index: 2; padding: 96px var(--px); display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta__text { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; color: var(--white); }
.cta__title { font-size: 48px; font-weight: 600; line-height: 60px; letter-spacing: -1.44px; max-width: 794px; }
.cta__sub { font-size: 24px; font-weight: 400; line-height: 36px; letter-spacing: -.48px; max-width: 720px; }

/* ───── Footer ───── */
footer { background: var(--gray-100); padding: 48px var(--px) 24px; }
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top { display: flex; gap: 80px; padding-bottom: 32px; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
.footer__brand { width: 384px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; }
.footer__logo { height: 32px; width: 180px; overflow: hidden; position: relative; }
.footer__logo img { position: absolute; height: 175%; left: -147%; top: -35%; width: 247%; object-fit: contain; }
.footer__tagline { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.footer__cols { display: flex; gap: 80px; }
.footer__col { display: flex; flex-direction: column; gap: 20px; min-width: 200px; }
.footer__col-title { font-size: 20px; font-weight: 475; line-height: 28px; letter-spacing: -.4px; color: var(--dark); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li { font-size: 16px; line-height: 24px; color: var(--gray-600); cursor: pointer; transition: color .15s; }
.footer__col ul li:hover { color: var(--blue); }
.footer__col ul li a { color: inherit; text-decoration: none; }
.footer__contact-item { display: flex; gap: 8px; align-items: flex-start; }
.footer__contact-item img { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.footer__contact-text { font-size: 16px; line-height: 24px; color: var(--gray-600); }
.footer__divider { height: 1px; background: var(--gray-300); opacity: .5; margin-bottom: 24px; }
.footer__copy { font-size: 14px; font-family: sans-serif; color: var(--gray-600); text-align: center; line-height: 20px; }

/* ───── Scroll animations ───── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible, .fade-in.is-visible { opacity: 1; transform: none; }

/* Mobile nav drawer — hidden by default; revealed only via .open inside the mobile media query */
.nav-drawer { display: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1440px) {
  :root { --px: clamp(24px, 8vw, 120px); }
}

/* TABLET 768–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --px: 40px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  nav { padding: 0 40px !important; }
  nav .nav-link { padding: 20px 10px; font-size: 14px; }
  nav .nav-phone span { display: none; }
  nav .nav-phone { padding: 20px 10px; }
  .hero-section { height: 680px !important; padding: 80px 0 0 !important; }
  .hero__title { font-size: 52px !important; line-height: 64px !important; }
  .hero__content { max-width: 520px !important; }
  .about { flex-direction: column; gap: 40px; }
  .about__text { padding-right: 0; }
  .about__image { width: 100%; min-height: 360px; }
  .section-title { font-size: 36px; letter-spacing: -1px; }
  .products__grid { flex-direction: column; }
  .product-card--horizontal { flex-direction: column; padding: 24px; }
  .product-card--horizontal .product-card__img { width: 100% !important; height: 240px !important; }
  .products__col > div[style*="height:700px"] { height: auto !important; flex-direction: row !important; }
  .process__body { flex-direction: column; }
  .process__img { min-height: 300px; }
  .process__row { gap: 16px; }
  .app-row { flex-wrap: wrap; }
  .app-img { min-width: calc(50% - 12px); height: 260px; }
  .app-img--fixed { width: calc(50% - 12px) !important; }
  .benefits__row { flex-wrap: wrap; }
  .benefit-card { min-width: calc(50% - 12px); }
  .testimonials__body { flex-direction: column; }
  .testimonials__img { width: 100%; height: 300px; }
  .testimonials__quote { font-size: 22px; line-height: 32px; }
  .faq__list { width: 100%; }
  .faq__heading { max-width: 100%; }
  .contact__inner { flex-direction: column; }
  .contact__img { min-height: 300px; }
  .blog-cards { flex-wrap: wrap; }
  .blog-card { min-width: calc(50% - 12px); }
  .cta__title { font-size: 36px; line-height: 48px; }
  .cta__inner { padding: 72px 40px; }
  footer { padding: 48px 40px 24px; }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__brand { width: 100%; padding-right: 0; }
  .footer__cols { flex-wrap: wrap; }
  .footer__col { min-width: calc(50% - 12px); }
}

/* MOBILE ≤ 767px */
@media (max-width: 767px) {
  :root { --px: 20px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  nav { padding: 0 20px !important; }
  nav .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; padding: 4px; flex-shrink: 0; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-drawer { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,.97); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .nav-drawer.open { display: flex; }
  .nav-drawer a { font-size: 24px; font-weight: 600; color: var(--white); padding: 12px 20px; letter-spacing: -0.5px; }
  .nav-drawer a:hover { color: var(--blue); }
  .nav-drawer .drawer-phone { font-size: 16px; color: var(--gray-300); margin-top: 24px; display: flex; align-items: center; gap: 8px; }
  .nav-drawer .drawer-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .nav-drawer .drawer-close::before, .nav-drawer .drawer-close::after { content: ''; position: absolute; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
  .nav-drawer .drawer-close::before { transform: rotate(45deg); }
  .nav-drawer .drawer-close::after { transform: rotate(-45deg); }
  .hero-section { height: auto !important; min-height: 600px !important; padding: 80px 0 48px !important; flex-direction: column !important; justify-content: flex-end !important; }
  .hero__content { width: 100% !important; max-width: 100% !important; }
  .hero__title { font-size: 36px !important; line-height: 44px !important; letter-spacing: -0.5px !important; }
  .hero__sub { font-size: 15px !important; line-height: 24px !important; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .section-title { font-size: 28px; letter-spacing: -0.5px; line-height: 1.2; }
  .about { flex-direction: column; gap: 32px; }
  .about__text { padding-right: 0; }
  .about__image { width: 100%; min-height: 280px; }
  .products__grid { flex-direction: column; }
  .product-card--horizontal { flex-direction: column; padding: 24px; }
  .product-card--horizontal .product-card__img { width: 100% !important; height: 200px !important; }
  .products__col > div[style*="height:700px"] { height: auto !important; flex-direction: column !important; }
  .product-card--corner-img { padding-top: 130px; }
  .products__vector { display: none; }
  .process__body { flex-direction: column; }
  .process__row { flex-direction: column; gap: 16px; }
  .app-row { flex-direction: column; }
  .app-img { height: 220px; width: 100% !important; flex: none; }
  .benefits__row { flex-direction: column; }
  .testimonials__body { flex-direction: column; }
  .testimonials__img { display: none; }
  .testimonials__card { padding: 20px; }
  .testimonials__quote { font-size: 18px; line-height: 28px; }
  .testimonials__controls { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faq__list { width: 100%; }
  .faq__heading { max-width: 100%; }
  .contact__inner { flex-direction: column; }
  .contact__img { display: none; }
  .contact__form-title { font-size: 28px; line-height: 36px; }
  .form-row { flex-direction: column; }
  .contact__form-wrap { padding: 20px; }
  .blogs__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-cards { flex-direction: column; }
  .cta__title { font-size: 28px; line-height: 38px; }
  .cta__inner { padding: 64px 20px; }
  footer { padding: 40px 20px 20px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__brand { width: 100%; padding-right: 0; }
  .footer__cols { flex-direction: column; gap: 28px; }
  .page-hero { height: 240px; padding: 64px 20px; }
  .page-hero__title { font-size: 32px; letter-spacing: -.8px; }
  .rich-text h1 { font-size: 32px; }
  .rich-text h2 { font-size: 24px; }
  .rich-text h3 { font-size: 20px; }
  .rich-text .wp-block-columns { flex-direction: column; }
}

/* ============================================================
   Subtle Interactions (polish)
   Respects prefers-reduced-motion via @media block at the end.
   ============================================================ */

/* Cards lift + image zoom */
.product-card,
.benefit-card,
.step-card,
.blog-card {
  transition: transform .28s cubic-bezier(.2,.7,.2,1),
              box-shadow .28s cubic-bezier(.2,.7,.2,1),
              border-color .28s ease;
  will-change: transform;
}
.product-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -18px rgba(16,24,40,.18), 0 2px 6px -4px rgba(16,24,40,.08);
}
.step-card { cursor: pointer; }
.step-card:hover,
.step-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  outline: none;
}

/* Product images: zoom within the frame */
.product-card__img,
.product-card__corner,
.product-card--horizontal .product-card__img {
  overflow: hidden;
}
.product-card__img img,
.product-card__corner img,
.product-card--horizontal .product-card__img img {
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__img img,
.product-card:hover .product-card__corner img,
.product-card:hover .product-card--horizontal .product-card__img img {
  transform: scale(1.035);
}

/* Benefit icon — playful tilt on hover */
.benefit-card__icon {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background-color .25s ease;
}
.benefit-card:hover .benefit-card__icon {
  transform: rotate(-6deg) scale(1.08);
}
.benefit-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

/* Application images: zoom + gentle gradient sweep */
.app-img {
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.app-img img {
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.app-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.22) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.app-img:hover img { transform: scale(1.04); }
.app-img:hover::after { opacity: 1; }

/* Blog card — image zoom + read-more arrow slide */
.blog-card__img { overflow: hidden; }
.blog-card__img img {
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.blog-card:hover .blog-card__img img { transform: scale(1.045); }
.blog-card__read {
  display: inline-flex; align-items: center; gap: 2px;
  transition: gap .25s ease, color .2s ease;
}
.blog-card:hover .blog-card__read { gap: 8px; color: var(--blue); }

/* Nav link — underline that slides in from left */
nav .nav-link { position: relative; }
nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
  opacity: .6;
}
nav .nav-link:hover::after { transform: scaleX(1); }

/* Hero scroll arrow — gentle invitation bounce */
@keyframes intercell-scroll-bounce {
  0%, 20%, 100% { transform: translate(-50%, 0); opacity: .9; }
  50%           { transform: translate(-50%, 6px); opacity: 1; }
}
.hero__scroll {
  animation: intercell-scroll-bounce 2.4s cubic-bezier(.5,0,.5,1) infinite;
}

/* Primary CTA — magnetic class added by JS */
.btn--primary.is-magnetic {
  transition: transform .25s cubic-bezier(.2,.7,.2,1), opacity .15s;
}

/* Product card tilt container — JS adds transform on mousemove */
.product-card.is-tiltable {
  transform-style: preserve-3d;
  transition: transform .2s cubic-bezier(.2,.7,.2,1),
              box-shadow .28s cubic-bezier(.2,.7,.2,1);
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .product-card, .benefit-card, .step-card, .blog-card,
  .product-card__img img, .product-card__corner img,
  .product-card--horizontal .product-card__img img,
  .benefit-card__icon, .app-img, .app-img img, .app-img::after,
  .blog-card__img img, .blog-card__read,
  nav .nav-link::after, .btn--primary.is-magnetic, .product-card.is-tiltable {
    transition: none !important;
    animation: none !important;
  }
  .hero__scroll { animation: none !important; }
}

/* ============================================================
   Form Module — error state + inline radios/checkboxes
   Reuses the existing .form-* classes so managed forms match
   the homepage contact form out of the box.
   ============================================================ */

.intercell-form [aria-invalid="true"] {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 1px #dc2626;
}
.intercell-form .form-error-msg {
  color: #991b1b;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 4px;
}
.intercell-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intercell-form fieldset legend {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.intercell-form .form-radio,
.intercell-form .form-checkbox,
.intercell-form .form-consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  cursor: pointer;
}
.intercell-form .form-consent { padding-top: 6px; }
.intercell-form .form-actions { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════════════════
   NIEUWE SECTIONS — Map / Icon Row / USP Strip / Certificates / Made By
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───── MAP (tekst + Google Maps iframe) ───── */
.map { display: flex; gap: 24px; align-items: stretch; }
.map__text { flex: 1; display: flex; flex-direction: column; gap: 32px; padding-right: 24px; justify-content: center; }
.map__text-inner { display: flex; flex-direction: column; gap: 16px; }
.map__heading { display: flex; flex-direction: column; gap: 12px; }
.map__embed { position: relative; width: 588px; flex-shrink: 0; min-height: 420px; border-radius: var(--radius-md); overflow: hidden; background: var(--gray-100); }
.map__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; padding: 24px; text-align: center; color: var(--gray-600); font-size: 14px; line-height: 20px; }
.map__placeholder p { max-width: 360px; }
.map--image-left { flex-direction: row-reverse; }
.map--image-left .map__text { padding-right: 0; padding-left: 24px; }

/* ───── ICON ROW (4 iconen onder titel) ───── */
.icon-row { display: flex; flex-direction: column; gap: 48px; }
.icon-row__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.icon-row__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.icon-row__cell { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.icon-row__icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.icon-row__icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.icon-row__label { font-size: 16px; line-height: 22px; font-weight: 500; color: var(--dark); letter-spacing: -.2px; }

/* ───── USP STRIP (horizontaal, dark/light) ───── */
.usp-strip { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.usp-strip__title { font-size: 22px; font-weight: 600; line-height: 30px; color: var(--dark); text-align: center; letter-spacing: -.4px; }
.usp-strip--light .usp-strip__title { color: var(--white); }
.usp-strip__grid { width: 100%; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; border-radius: var(--radius-md); overflow: hidden; }
.usp-strip__cell { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 12px; padding: 24px 16px; text-align: center; min-height: 168px; transition: background-color .2s; }
.usp-strip__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.usp-strip__icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.usp-strip__label { font-size: 13px; line-height: 18px; font-weight: 600; letter-spacing: .2px; text-transform: uppercase; }

/* Dark variant: donkere strip op witte pagina */
.usp-strip--dark .usp-strip__grid { background: var(--gray-900); }
.usp-strip--dark .usp-strip__cell { color: var(--white); border-right: 1px solid rgba(255,255,255,.08); }
.usp-strip--dark .usp-strip__cell:last-child { border-right: 0; }
.usp-strip--dark .usp-strip__cell--active { background: var(--white); color: var(--dark); }
.usp-strip--dark .usp-strip__cell--active .usp-strip__icon img { filter: none; }

/* Light variant: lichte strip op donkere pagina */
.usp-strip--light .usp-strip__grid { background: var(--white); }
.usp-strip--light .usp-strip__cell { color: var(--dark); border-right: 1px solid var(--gray-200); }
.usp-strip--light .usp-strip__cell:last-child { border-right: 0; }
.usp-strip--light .usp-strip__cell--active { background: var(--blue); color: var(--white); }

/* ───── CERTIFICATES (accordion met logo + uitleg) ───── */
.certificates { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.certificates__heading { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 792px; }
.certificates__list { display: flex; flex-direction: column; gap: 16px; width: 792px; max-width: 100%; }
.cert-item { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 20px; cursor: pointer; transition: border-color .2s, background-color .2s; }
.cert-item.open { border-color: var(--blue); background: var(--white); }
.cert-item__header { display: flex; gap: 16px; align-items: center; }
.cert-item__logo { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: var(--radius-sm); padding: 4px; }
.cert-item__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-item__name { flex: 1; font-size: 18px; font-weight: 500; line-height: 26px; color: var(--dark); letter-spacing: -.2px; }
.cert-item__icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.cert-item__icon::before, .cert-item__icon::after { content: ''; position: absolute; background: var(--dark); border-radius: 2px; transition: transform .2s, opacity .2s; }
.cert-item__icon::before { width: 14px; height: 2px; }
.cert-item__icon::after { width: 2px; height: 14px; opacity: 1; }
.cert-item.open .cert-item__icon::after { opacity: 0; transform: rotate(90deg); }
.cert-item__description { font-size: 16px; line-height: 24px; color: var(--gray-600); overflow: hidden; max-height: 0; transition: max-height .3s ease, margin-top .3s; }
.cert-item.open .cert-item__description { max-height: 400px; margin-top: 16px; }

/* ───── MADE BY (logo-stack + machine image, 2 kolommen) ───── */
.made-by { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: 48px; align-items: center; }
.made-by__col--stack { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.made-by__logo { display: flex; align-items: center; justify-content: center; max-width: 220px; }
.made-by__logo img { max-width: 100%; max-height: 96px; object-fit: contain; }
.made-by__label { font-size: 18px; font-weight: 500; line-height: 26px; color: var(--gray-600); letter-spacing: -.2px; }
.made-by__col--image { display: flex; align-items: center; justify-content: center; }
.made-by__col--image img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }

/* ───── RESPONSIVE — TABLET 768–1023px ───── */
@media (min-width: 768px) and (max-width: 1023px) {
  .map { flex-direction: column; gap: 40px; }
  .map__text { padding-right: 0; }
  .map__embed { width: 100%; min-height: 360px; }
  .map--image-left .map__text { padding-left: 0; }
  .icon-row__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .usp-strip__grid { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); grid-auto-columns: auto; }
  .usp-strip--dark .usp-strip__cell,
  .usp-strip--light .usp-strip__cell { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .usp-strip--light .usp-strip__cell { border-right-color: var(--gray-200); border-bottom-color: var(--gray-200); }
  .certificates__list { width: 100%; }
  .made-by { grid-template-columns: 1fr 1.5fr; gap: 32px; }
}

/* ───── RESPONSIVE — MOBILE ≤767px ───── */
@media (max-width: 767px) {
  .map { flex-direction: column; gap: 32px; }
  .map__text { padding-right: 0; }
  .map__embed { width: 100%; min-height: 320px; }
  .map--image-left { flex-direction: column; }
  .map--image-left .map__text { padding-left: 0; }
  .icon-row { gap: 32px; }
  .icon-row__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .usp-strip__grid { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); grid-auto-columns: auto; }
  .usp-strip__cell { min-height: 140px; padding: 20px 12px; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .usp-strip--light .usp-strip__cell { border-bottom-color: var(--gray-200); }
  .certificates { gap: 32px; }
  .certificates__list { width: 100%; }
  .cert-item__name { font-size: 16px; line-height: 22px; }
  .cert-item__logo { width: 40px; height: 40px; }
  .made-by { grid-template-columns: 1fr; gap: 32px; }
  .made-by__col--stack { order: 1; }
  .made-by__col--image { order: 2; }
}

/* ───── EXPLODED VIEW (scroll-scrubbed video) ───── */
.exploded-view-wrap { width: 100%; }
.exploded-view__intro { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; max-width: 792px; margin: 0 auto; }
.exploded-view__intro-body { font-size: 18px; line-height: 28px; }

.exploded-view { position: relative; width: 100%; background: var(--gray-900); }
.exploded-view--scroll { height: var(--exploded-height, 250vh); }
.exploded-view__sticky { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.exploded-view__video { width: 100%; height: 100%; display: block; background: var(--gray-900); }
.exploded-view--fit-contain .exploded-view__video { object-fit: contain; }
.exploded-view--fit-cover .exploded-view__video { object-fit: cover; }

.exploded-view--loop { background: var(--gray-100); }
.exploded-view--loop .exploded-view__sticky { position: relative; height: auto; }
.exploded-view--loop .exploded-view__video { height: auto; max-height: 80vh; }

/* Label overlays (alleen scroll-modus) */
.exploded-view__labels { position: absolute; inset: 0; pointer-events: none; }
.exploded-view__label {
  position: absolute;
  bottom: 56px;
  left: 56px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
  max-width: calc(100% - 112px);
}
.exploded-view__label.is-visible { opacity: 1; transform: translateY(0); }
.exploded-view__label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: .5px;
}
.exploded-view__label-text { font-size: 16px; line-height: 22px; font-weight: 500; letter-spacing: -.1px; }

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .exploded-view__label { bottom: 40px; left: 40px; max-width: calc(100% - 80px); }
}

/* Mobile */
@media (max-width: 767px) {
  .exploded-view--scroll { height: calc(var(--exploded-height, 250vh) * 0.85); }
  .exploded-view__label { bottom: 24px; left: 24px; right: 24px; max-width: none; padding: 12px 16px; gap: 10px; }
  .exploded-view__label-text { font-size: 14px; line-height: 20px; }
  .exploded-view__intro-body { font-size: 16px; line-height: 24px; }
}
