/* ============================================================
   KOZIJNENBUDDY — DESIGN SYSTEM & STYLES
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- DESIGN TOKENS --- */
:root {
  --color-bg:          #F4F3EF;
  --color-white:       #FFFFFF;
  --color-green-dark:  #07372F;
  --color-text:        #071F1C;
  --color-lime:        #C7F253;
  --color-muted:       #66706D;
  --color-border:      #D9DEDA;
  --color-bg-soft:     #EEF1EE;
  --color-success:     #2C7A55;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;

  --shadow-card: 0 2px 8px rgba(7,55,47,.06), 0 0 0 1px var(--color-border);
  --shadow-lift: 0 6px 24px rgba(7,55,47,.10), 0 0 0 1px var(--color-border);

  --transition-base: 180ms ease;

  --container: 1360px;
  --gap: 24px;

  /* Vertical rhythm */
  --section-y:    clamp(4.5rem, 6vw, 6rem);
  --section-y-sm: clamp(3rem, 5vw, 4.5rem);
  --head-mb:      clamp(2.5rem, 3.5vw, 3.25rem);
}

/* ============================================================
   SCROLL-REVEAL — Apple/Meta quality
   ============================================================ */
.sr {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1100ms cubic-bezier(.22,.61,.36,1),
              transform 1100ms cubic-bezier(.22,.61,.36,1);
}
.sr.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .sr { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Stagger delays for sibling groups */
.steps-grid .step.sr:nth-child(2) { transition-delay: 55ms; }
.steps-grid .step.sr:nth-child(3) { transition-delay: 110ms; }

.audience-grid .audience-card.sr:nth-child(2) { transition-delay: 55ms; }
.audience-grid .audience-card.sr:nth-child(3) { transition-delay: 110ms; }
.audience-grid .audience-card.sr:nth-child(4) { transition-delay: 165ms; }

.samen-cards .samen-card.sr:nth-child(2) { transition-delay: 80ms; }

/* --- TYPOGRAPHY --- */
.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-lime);
}
.eyebrow--dark { color: var(--color-green-dark); }
.eyebrow--muted { color: var(--color-muted); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -.03em;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px)  { .container { padding-inline: 32px; } }
@media (min-width: 1200px) { .container { padding-inline: 48px; } }

.section { padding-block: var(--section-y); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  transition: background var(--transition-base), color var(--transition-base),
              box-shadow var(--transition-base), transform 80ms ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--color-lime);
  outline-offset: 3px;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--color-lime);
  color: var(--color-green-dark);
}
.btn-primary:hover { background: #b8e040; box-shadow: 0 4px 16px rgba(199,242,83,.35); }

.btn-dark {
  background: var(--color-green-dark);
  color: var(--color-white);
}
.btn-dark:hover { background: #0a4d41; }

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { border-color: var(--color-white); background: rgba(255,255,255,.06); }

.btn-arrow .arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}
.btn-arrow:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 17px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,243,239,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 14px;
}
.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-brand__img {
  display: block;
  width: clamp(160px, 18vw, 250px);
  height: auto;
}
.header-brand__mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.header-brand__text {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--color-green-dark);
  white-space: nowrap;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  padding: 7px 13px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}
.site-nav a:hover { color: var(--color-text); background: var(--color-bg-soft); }
.site-nav a:focus-visible { outline: 2px solid var(--color-lime); outline-offset: 2px; }

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-green-dark);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
  white-space: nowrap;
}
.header-phone:hover { background: var(--color-bg-soft); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-cta { display: none; }

/* Mobile header actions */
.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.header-phone--mobile {
  display: flex;
  align-items: center;
  color: var(--color-green-dark);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.header-phone--mobile:hover { background: var(--color-bg-soft); }
.header-phone--mobile svg { width: 20px; height: 20px; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.hamburger:hover { background: var(--color-bg-soft); }
.hamburger:focus-visible { outline: 2px solid var(--color-lime); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-green-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--color-white);
  z-index: 99;
  overflow-y: auto;
  padding: 24px 20px;
  border-top: 1px solid var(--color-border);
}
.mobile-menu.is-open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.mobile-menu a:hover { background: var(--color-bg-soft); border-color: var(--color-border); }
.mobile-menu a:focus-visible { outline: 2px solid var(--color-lime); }
.mobile-menu .mobile-menu-cta {
  margin-top: 12px;
  padding: 16px;
}
.mobile-menu-divider {
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-phone { display: flex; }
  .header-cta { display: inline-flex; }
  .header-mobile-actions { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-bg);
  padding-top: 40px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
/* Technical drawing as hero background */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/03_technical_drawing.png') center/cover no-repeat;
  opacity: .13;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-eyebrow { margin-bottom: 10px; }
.hero-headline {
  margin-bottom: 14px;
  color: var(--color-green-dark);
}
.hero-intro {
  font-size: .97rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 460px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text);
}
.hero-bullets li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--color-lime);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l4 4 6-7' stroke='%2307372F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Hero visual column — product image bleeds to right edge */
.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-technical-bg { display: none; } /* handled via .hero::before */
.hero-product-img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: left center;
  border-radius: var(--radius-lg) 0 0 0;
}

/* --- UPLOAD FORM --- */
.upload-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px 24px 20px;
  box-shadow: 0 8px 36px rgba(7,55,47,.11);
}
.upload-form-wrap h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--color-green-dark);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base);
  margin-bottom: 16px;
  position: relative;
}
.upload-zone:hover,
.upload-zone:focus-within { border-color: var(--color-green-dark); background: #f6fbf6; }
.upload-zone.drag-active { border-color: var(--color-lime); background: rgba(199,242,83,.08); }
.upload-zone.state-valid { border-color: var(--color-success); background: rgba(44,122,85,.05); }
.upload-zone.state-invalid { border-color: #dc2626; background: rgba(220,38,38,.04); }
.upload-zone__icon {
  width: 36px;
  height: 36px;
  margin-inline: auto;
  margin-bottom: 8px;
}
.upload-zone__text-primary {
  font-weight: 700;
  font-size: .95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}
.upload-zone__text-secondary {
  font-size: .8rem;
  color: var(--color-muted);
}
.upload-zone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-zone__btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--color-green-dark);
  border: 1px solid var(--color-green-dark);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-white);
  transition: background var(--transition-base);
  pointer-events: none;
}
.upload-zone:hover .upload-zone__btn { background: #0a4a3e; }

/* File preview */
.file-preview {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.file-preview.is-visible { display: flex; }
.file-preview__icon { flex-shrink: 0; color: var(--color-green-dark); }
.file-preview__info { flex: 1; min-width: 0; }
.file-preview__name {
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}
.file-preview__size { font-size: .78rem; color: var(--color-muted); }
.file-preview__status {
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.file-preview__status.valid { background: rgba(44,122,85,.12); color: var(--color-success); }
.file-preview__status.invalid { background: rgba(220,38,38,.1); color: #dc2626; }
.file-preview__remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-muted);
  transition: background var(--transition-base), color var(--transition-base);
}
.file-preview__remove:hover { background: rgba(220,38,38,.1); color: #dc2626; }
.file-preview__remove:focus-visible { outline: 2px solid var(--color-lime); }

/* Form fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Screen-reader only labels */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Icon-prefix fields */
.form-group--icon {
  position: relative;
}
.form-group--icon .field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  pointer-events: none;
  z-index: 1;
}
.form-group--icon input {
  padding-left: 36px !important;
}

.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .01em;
}
.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: .92rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-green-dark);
  box-shadow: 0 0 0 3px rgba(7,55,47,.1);
}
.form-group input.input-error { border-color: #dc2626; }
.form-group input.input-error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.field-error {
  display: none;
  font-size: .78rem;
  color: #dc2626;
  font-weight: 600;
}
.field-error.is-visible { display: block; }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

/* Privacy checkbox */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.privacy-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-green-dark);
  cursor: pointer;
}
.privacy-row label {
  font-size: .75rem;
  color: var(--color-muted);
  line-height: 1.5;
  cursor: pointer;
}
.privacy-row label a { color: var(--color-green-dark); font-weight: 700; text-decoration: underline; }
.privacy-row label a:hover { color: var(--color-success); }
.privacy-error { display: none; font-size: .78rem; color: #dc2626; font-weight: 600; margin-bottom: 8px; }
.privacy-error.is-visible { display: block; }

/* Submit button */
.form-submit { position: relative; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-submit .btn:disabled { opacity: .6; cursor: not-allowed; }
.form-submit .btn-loading { display: none; }
.form-submit.is-loading .btn-label { display: none; }
.form-submit.is-loading .btn-loading { display: inline-flex; align-items: center; gap: 8px; }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(7,55,47,.25);
  border-top-color: var(--color-green-dark);
  border-radius: 50%;
  animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form microcopy */
.form-microcopy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .78rem;
  color: var(--color-muted);
}
.form-microcopy svg { flex-shrink: 0; color: var(--color-green-dark); }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  background: rgba(44,122,85,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 16px;
}
.form-success__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}
.form-success__text { font-size: .92rem; color: var(--color-muted); line-height: 1.6; }

/* Hero desktop layout */
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
  }
}
@media (min-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr 0.55fr;
    gap: 28px;
    align-items: start;
  }
  .hero-product-img { display: block; }
  .hero-visual { margin-right: -48px; } /* bleed past container */
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(7,55,47,.1);
}
.sticky-mobile-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 899px) {
  .sticky-mobile-cta.is-visible { display: block; }
}

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar {
  background: var(--color-green-dark);
  padding-block: 28px;
}
.usp-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.usp-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 14px;
  color: var(--color-white);
  padding: 16px 20px;
  position: relative;
}
/* Vertical dividers between items */
.usp-item + .usp-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
/* Remove left divider for items that start new rows */
.usp-item:nth-child(odd)::before { display: none; }
@media (min-width: 640px) {
  .usp-item:nth-child(odd)::before { display: block; }
  .usp-item:first-child::before { display: none; }
}
.usp-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: .85;
}
/* Force USP icons white on dark bg */
.usp-bar .usp-item__icon path,
.usp-bar .usp-item__icon circle,
.usp-bar .usp-item__icon rect {
  stroke: rgba(255,255,255,.7);
}
.usp-bar .usp-item__icon path[stroke="#C7F253"],
.usp-bar .usp-item__icon circle[stroke="#C7F253"] {
  stroke: var(--color-lime);
}
.usp-item__text { display: flex; flex-direction: column; gap: 1px; }
.usp-item__number {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--color-white);
  line-height: 1;
}
.usp-item__number span {
  color: var(--color-lime);
}
.usp-item__label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}
@media (min-width: 640px) {
  .usp-bar-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .usp-bar { padding-block: 32px; }
  .usp-item { flex-direction: row; text-align: left; gap: 16px; }
  .usp-item__text { display: flex; flex-direction: column; }
}

/* ============================================================
   ZO WERKT HET
   ============================================================ */
/* Photo 5 as subtle section background */
.how-it-works {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.how-it-works .section-header,
.products .section-header,
.voor-wie .section-header,
.samen-bouwen .section-header,
.faq .section-header {
  text-align: center;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/05_window_detail.png') center/cover no-repeat;
  opacity: .035;
  pointer-events: none;
}

/* Photo 6 — factory calculation — below steps */
.werkwijze-foto {
  margin-top: 64px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.werkwijze-foto img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
@media (min-width: 1024px) {
  .werkwijze-foto { margin-top: 80px; }
}
.section-header { margin-bottom: var(--head-mb); }
.section-header .eyebrow { margin-bottom: 10px; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.step__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__icon-wrap svg { width: 36px; height: 36px; }
.step__number {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.step__title { font-size: 1.15rem; font-weight: 800; color: var(--color-green-dark); margin-bottom: 6px; }
.step__desc { font-size: .92rem; color: var(--color-muted); line-height: 1.65; }

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-border), var(--color-lime));
    z-index: 0;
  }
  .step { padding-inline: 24px; position: relative; z-index: 1; }
}
@media (min-width: 1024px) {
  .steps-grid::before {
    top: 40px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
  }
  .step { padding-inline: 36px; }
  .step__icon-wrap { width: 80px; height: 80px; }
  .step__icon-wrap svg { width: 44px; height: 44px; }
}

/* ============================================================
   PRODUCTEN
   ============================================================ */
.products { background: var(--color-bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.product-card:focus-within {
  outline: 2px solid var(--color-lime);
  outline-offset: 2px;
}
.product-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-soft);
}
.product-card__img-wrap picture,
.werkwijze-foto picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}
.product-card:hover .product-card__img { transform: scale(1.03); }
.product-card__body {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.product-card__title {
  font-size: .92rem;
  font-weight: 800;
  color: var(--color-green-dark);
  letter-spacing: -.02em;
}
.product-card__arrow {
  width: 28px;
  height: 28px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base), transform var(--transition-base);
}
.product-card:hover .product-card__arrow {
  background: var(--color-lime);
  transform: translateX(2px);
}
.product-card__arrow svg { width: 14px; height: 14px; }

/* Mobile horizontal scroll override for small screens */
@media (max-width: 479px) {
  .products-scroll-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .products-scroll-outer::-webkit-scrollbar { display: none; }
  .products-grid {
    grid-template-columns: repeat(7, 200px);
    gap: 12px;
    padding-bottom: 4px;
  }
  .product-card { scroll-snap-align: start; }
}
@media (min-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(7, 1fr); gap: 14px; }
  .product-card__img-wrap { aspect-ratio: 3/4; }
}

/* ============================================================
   VOOR WIE
   ============================================================ */
.voor-wie { background: var(--color-white); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.audience-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.audience-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.audience-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audience-card__icon svg { width: 28px; height: 28px; }
.audience-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 4px;
}
.audience-card__desc { font-size: .88rem; color: var(--color-muted); line-height: 1.55; }

@media (min-width: 600px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SAMEN BOUWEN
   ============================================================ */
.samen-bouwen {
  background: var(--color-green-dark);
  padding-block: var(--section-y);
}
.samen-bouwen .section-header .eyebrow { color: var(--color-lime); }
.samen-bouwen .section-header h2 { color: var(--color-white); }
.samen-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.samen-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.samen-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.samen-card__icon svg { width: 30px; height: 30px; }
/* Force icon colors on dark bg */
.samen-card__icon svg path,
.samen-card__icon svg circle,
.samen-card__icon svg rect {
  stroke: var(--color-white);
}
.samen-card__icon svg path[stroke="#C7F253"],
.samen-card__icon svg circle[stroke="#C7F253"] {
  stroke: var(--color-lime);
}
.samen-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}
.samen-card__desc {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  flex: 1;
}
@media (min-width: 768px) {
  .samen-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .97rem;
  font-weight: 700;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}
.faq-trigger:hover { background: var(--color-bg-soft); }
.faq-trigger:focus-visible { outline: 2px solid var(--color-lime); outline-offset: -2px; }
.faq-trigger[aria-expanded="true"] { color: var(--color-green-dark); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform var(--transition-base);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--color-green-dark); }

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 260ms ease, padding 200ms ease;
}
.faq-panel[aria-hidden="false"] { max-height: 400px; }
.faq-panel__inner {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   BOTTOM CTA BALK
   ============================================================ */
.cta-balk {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--section-y);
  text-align: center;
}
.cta-balk h2 {
  color: var(--color-green-dark);
  margin-bottom: 12px;
  max-width: 600px;
  margin-inline: auto;
}
.cta-balk p {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-green-dark);
  color: rgba(255,255,255,.7);
  padding-block: 56px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -.025em;
}
.footer-brand__desc { font-size: .88rem; line-height: 1.65; max-width: 280px; }
.footer-brand__logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-brand__logo-wrap svg path,
.footer-brand__logo-wrap svg rect { stroke: var(--color-white); }
.footer-brand__logo-wrap svg path[stroke="#C7F253"],
.footer-brand__logo-wrap svg rect[stroke="#C7F253"] { stroke: var(--color-lime); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition-base);
}
.footer-col a:hover { color: var(--color-white); }
.footer-col a:focus-visible { outline: 2px solid var(--color-lime); outline-offset: 2px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-lime); }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-bottom__copy { font-size: .82rem; }
.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-bottom__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition-base);
}
.footer-bottom__links a:hover { color: var(--color-white); }

@media (min-width: 600px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.5fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MOBILE OVERRIDES (max 899px)
   ============================================================ */
@media (max-width: 899px) {

  /* --- Stappen: gecentreerd op mobiel --- */
  .step {
    align-items: center;
    text-align: center;
  }

  /* --- Nav: show phone number text --- */
  .mobile-phone-text {
    font-size: .82rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-left: 5px;
    white-space: nowrap;
  }
  .header-phone--mobile {
    gap: 4px;
  }
  .header-mobile-actions {
    margin-left: auto;
    gap: 8px;
  }

  /* --- Hero: 2-col on mobile (text | photo bleeds right) --- */
  .hero {
    padding-top: 28px;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding-right: 12px;
    padding-bottom: 24px;
  }
  /* Show product image on mobile, bleeding right */
  .hero-inner {
    padding-right: 0;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
  }
  .hero-product-img {
    display: block;
    min-height: unset;
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: left center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  /* Form below, full width */
  #upload-form {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  /* Shorter heading on mobile */
  .hero-headline {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 10px;
  }
  /* Hide bullets on mobile, shorten intro */
  .hero-bullets { display: none; }
  .hero-intro {
    font-size: .88rem;
    max-width: none;
    margin-bottom: 0;
  }

  /* --- Form: single column fields on mobile --- */
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .upload-form-wrap {
    padding: 20px 16px 18px;
    border-radius: var(--radius-lg);
  }

  /* --- USP bar: bigger numbers on mobile --- */
  .usp-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
  }
  .usp-item__icon { width: 28px; height: 28px; }
  .usp-item__number {
    font-size: 1.75rem;
    line-height: 1;
  }
  .usp-item__label {
    font-size: .72rem;
    line-height: 1.3;
  }
  /* Remove side dividers on mobile 2x2, add bottom dividers */
  .usp-item + .usp-item::before { display: none; }
  .usp-bar-grid {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .usp-item {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .usp-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.1);
  }
}

/* ============================================================
   LAUNCH OVERRIDES — mobile-first production polish
   ============================================================ */
:root {
  --color-bg: #F7F5F0;
  --color-green: #0B4A3F;
  --color-green-dark: #073D34;
  --color-text: #082B26;
  --color-lime: #B9EF48;
  --color-muted: #5F6966;
  --color-border: #DDE2DE;
  --color-bg-soft: #F0F4ED;
  --color-card: #FFFFFF;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-card: 0 10px 28px rgba(7, 55, 47, .08), 0 0 0 1px var(--color-border);
  --shadow-lift: 0 18px 42px rgba(7, 55, 47, .12), 0 0 0 1px var(--color-border);
}

body.menu-open { overflow: hidden; }

.btn-primary,
.btn-dark {
  background: var(--color-green-dark);
  color: var(--color-white);
  box-shadow: 0 8px 22px rgba(7, 61, 52, .16);
}
.btn-primary:hover,
.btn-dark:hover {
  background: #0A4E42;
  box-shadow: 0 12px 28px rgba(7, 61, 52, .2);
}
.btn-outline-white {
  min-height: 48px;
  border-radius: var(--radius-md);
}

.site-header {
  background: rgba(250, 248, 243, .96);
}
.header-inner {
  min-height: 68px;
  padding-block: 8px;
}
.header-brand__img {
  width: clamp(178px, 20vw, 250px);
}
.header-brand {
  gap: 12px;
}
.header-brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding-inline: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #0A4B40, #062F29);
  color: var(--color-lime);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 6px 14px rgba(7,55,47,.12);
  flex-shrink: 0;
}
.header-phone--mobile {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.header-phone--mobile svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}
.hamburger {
  width: 44px;
  height: 44px;
}
.hamburger span {
  width: 30px;
  height: 3px;
}
.mobile-menu {
  inset: 68px 12px auto 12px;
  max-height: calc(100dvh - 84px);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lift);
  background: rgba(255, 255, 255, .98);
}

.hero {
  padding-top: clamp(54px, 8vw, 84px);
  padding-bottom: clamp(28px, 7vw, 84px);
  background:
    linear-gradient(180deg, rgba(247,245,240,.96), rgba(247,245,240,.9)),
    var(--color-bg);
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(247,245,240,.98) 0%, rgba(247,245,240,.82) 46%, rgba(247,245,240,.45) 100%),
    image-set(url('../assets/images/03_technical_drawing.webp') type('image/webp'), url('../assets/images/03_technical_drawing.png') type('image/png')) right bottom / 860px auto no-repeat;
  opacity: .34;
}
.hero-inner {
  row-gap: 26px;
}
.hero-content {
  max-width: 650px;
}
.hero-eyebrow {
  margin-bottom: 20px;
  font-size: clamp(.9rem, 2.9vw, 1rem);
  letter-spacing: .18em;
  color: var(--color-lime);
}
.hero-headline {
  margin-bottom: 26px;
  font-size: clamp(3rem, 13.7vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--color-green-dark);
  text-wrap: balance;
}
.hero-headline__dot {
  color: var(--color-lime);
}
.hero-intro {
  margin-bottom: 24px;
  max-width: 560px;
  font-size: clamp(1.07rem, 4.4vw, 1.24rem);
  line-height: 1.55;
  color: #4F5C59;
}
.hero-benefits {
  gap: 0;
  max-width: 560px;
}
.hero-benefits li {
  min-height: 62px;
  gap: 18px;
  border-bottom: 1px solid rgba(7, 61, 52, .13);
  font-size: clamp(1rem, 4vw, 1.18rem);
  font-weight: 600;
}
.hero-benefits li::before { display: none; }
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(185, 239, 72, .18);
  color: var(--color-green-dark);
  flex: 0 0 48px;
}
.benefit-icon svg {
  width: 25px;
  height: 25px;
}
.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-product-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 47% 55%;
  border-radius: 24px;
  border: 1px solid rgba(7, 61, 52, .12);
  box-shadow: 0 14px 36px rgba(7, 61, 52, .14);
}
#upload-form {
  scroll-margin-top: 92px;
}
.upload-form-wrap {
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  border-color: rgba(7, 61, 52, .14);
  box-shadow: var(--shadow-card);
}
.upload-form-wrap h2 {
  font-size: clamp(1.6rem, 6vw, 1.95rem);
  margin-bottom: 22px;
}
.upload-zone {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border-color: #CCD5D0;
  background: rgba(255,255,255,.72);
}
.upload-zone:focus-visible,
.upload-zone:focus-within {
  outline: 3px solid rgba(185, 239, 72, .55);
  outline-offset: 3px;
}
.upload-zone__icon {
  width: 50px;
  height: 50px;
}
.upload-zone__text-primary {
  font-size: 1.05rem;
}
.upload-zone__text-secondary {
  font-size: .94rem;
}
.upload-zone__btn {
  min-height: 50px;
  padding-inline: 26px;
  border-radius: 9px;
  font-size: 1rem;
}
.file-preview {
  border-radius: 16px;
  padding: 14px;
  background: var(--color-bg-soft);
}
.file-preview__remove {
  width: 44px;
  height: 44px;
}
.floating-label {
  display: block;
  margin: 0 0 6px 2px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--color-green-dark);
}
.form-fields {
  gap: 14px;
}
.form-group--icon .field-icon {
  top: calc(50% + 11px);
  left: 18px;
  width: 22px;
  height: 22px;
}
.form-group--icon input {
  min-height: 58px;
  padding-left: 54px !important;
  border-radius: 16px;
  font-size: 1rem;
  background: rgba(255,255,255,.96);
}
.privacy-row {
  margin-top: 4px;
}
.privacy-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.privacy-row label,
.form-microcopy {
  font-size: .86rem;
}
.form-submit .btn {
  min-height: 54px;
  border-radius: 12px;
}
.form-alert {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #E0A5A5;
  border-radius: 14px;
  background: #FFF5F5;
  color: #7A2020;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.5;
}
.form-alert.is-visible {
  display: block;
}
.form-alert__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
}
.form-alert a {
  color: var(--color-green-dark);
  text-decoration: underline;
}
.sticky-mobile-cta {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

@media (max-width: 369px) {
  .mobile-phone-text { display: none; }
  .header-inner {
    gap: 8px;
    padding-inline: 16px;
  }
  .header-brand__img { width: 162px; }
  .header-brand__badge {
    min-width: 48px;
    height: 30px;
    padding-inline: 9px;
    font-size: .78rem;
  }
  .header-mobile-actions { gap: 2px; }
  .hero-headline {
    font-size: clamp(2.55rem, 13.2vw, 3rem);
  }
}

@media (max-width: 899px) {
  .header-inner {
    gap: 6px;
  }
  .header-brand__img {
    width: 142px;
  }
  .header-brand {
    gap: 8px;
  }
  .header-brand__mark {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .header-brand__text {
    font-size: .8rem;
  }
  .header-brand__badge {
    min-width: 46px;
    height: 30px;
    padding-inline: 8px;
    font-size: .78rem;
  }
  .header-mobile-actions {
    gap: 4px;
  }
  .header-phone--mobile {
    padding-inline: 4px;
  }
  .header-phone--mobile svg {
    width: 26px;
    height: 26px;
  }
  .mobile-phone-text {
    font-size: .78rem;
    margin-left: 2px;
  }
}

@media (max-width: 399px) {
  .mobile-phone-text { display: none; }
}

@media (max-width: 374px) {
  .container {
    padding-inline: 16px;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-content,
  .hero-visual,
  #upload-form {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-visual {
    min-height: 250px;
  }
  .hero-product-img {
    aspect-ratio: 1.18 / 1;
  }
  .upload-form-wrap {
    padding: 22px 14px 18px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-content,
  .hero-visual,
  #upload-form {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-visual {
    justify-self: end;
    width: min(72%, 310px);
    margin-top: 8px;
  }
  .hero-product-img {
    aspect-ratio: 1 / 1.28;
  }
}

@media (min-width: 430px) and (max-width: 639px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.38fr) minmax(150px, .92fr);
    gap: 22px;
    align-items: start;
  }
  .hero-content {
    grid-column: 1;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: auto;
    padding-top: 76px;
  }
  .hero-product-img {
    aspect-ratio: .74 / 1;
  }
  #upload-form {
    grid-column: 1 / -1;
  }
  .hero-intro,
  .hero-benefits {
    grid-column: 1 / -1;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .container { padding-inline: 28px; }
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
    gap: 28px;
  }
  .hero-content { grid-column: 1; }
  .hero-visual { grid-column: 2; grid-row: auto; padding-top: 42px; }
  .hero-product-img { aspect-ratio: .78 / 1; }
  #upload-form {
    grid-column: 1 / -1;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 899px) {
  .section {
    padding-block: 72px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2,
  .cta-balk h2,
  .samen-bouwen .section-header h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }
  .hero {
    overflow: hidden;
  }
  .hero-inner {
    align-items: start;
  }
  .hero-bullets {
    display: flex;
  }
  .usp-bar {
    display: none;
  }
  .step {
    text-align: left;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
  }
  .step__icon-wrap,
  .audience-card__icon,
  .samen-card__icon {
    border-radius: 50%;
    background: rgba(185, 239, 72, .16);
  }
  .products-scroll-outer {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .products-scroll-outer::-webkit-scrollbar {
    display: none;
  }
  .product-card,
  .audience-card,
  .samen-card,
  .faq-list {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
  }
  .samen-bouwen {
    padding-block: 72px;
  }
  .samen-card .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .header-cta {
    display: none;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(300px, .58fr);
    align-items: start;
  }
  .hero-content { grid-column: 1; }
  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    margin-right: 0;
    padding-top: 34px;
  }
  .hero-product-img {
    aspect-ratio: .8 / 1;
  }
  #upload-form {
    grid-column: 1 / -1;
    width: min(100%, 960px);
    margin-inline: auto;
    margin-top: -10px;
  }
  .hero-headline br:nth-of-type(1),
  .hero-headline br:nth-of-type(3) {
    display: none;
  }
  .hero-headline br:nth-of-type(4) {
    display: none;
  }
  .hero-headline {
    font-size: clamp(4rem, 6vw, 6.4rem);
    max-width: 780px;
  }
  .hero-intro {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, .9fr) minmax(380px, .5fr);
    column-gap: 70px;
  }
  #upload-form {
    margin-top: -28px;
  }
}

.legal-page {
  min-height: 100vh;
  padding: clamp(32px, 7vw, 88px) 20px;
  background: var(--color-bg);
}
.legal-card {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: clamp(24px, 5vw, 52px);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.legal-card h1 {
  margin: 18px 0 18px;
  color: var(--color-green-dark);
}
.legal-card h2 {
  margin: 30px 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  color: var(--color-green-dark);
}
.legal-card p {
  margin-bottom: 14px;
  color: var(--color-muted);
}
.legal-card a {
  color: var(--color-green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

/* ============================================================
   HERO CORRECTION — desktop original, mobile mock-up
   ============================================================ */
.benefit-copy--desktop { display: none; }

@media (min-width: 900px) {
  .site-header {
    background: rgba(244, 243, 239, .95);
  }
  .header-inner {
    min-height: 76px;
    padding-block: 14px;
    gap: 20px;
  }
  .header-brand {
    gap: 14px;
  }
  .header-brand__mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .header-brand__text {
    font-size: 1.22rem;
    letter-spacing: -.04em;
  }
  .header-brand__badge {
    min-width: 58px;
    height: 34px;
    font-size: .82rem;
  }
  .header-phone {
    font-size: .95rem;
  }
  .header-phone::after {
    content: '';
  }
  .header-cta.btn,
  .header-cta.btn-dark,
  .form-submit .btn-primary {
    background: var(--color-lime);
    color: var(--color-green-dark);
    box-shadow: none;
  }
  .header-cta.btn:hover,
  .form-submit .btn-primary:hover {
    background: #BDF238;
    box-shadow: 0 4px 16px rgba(199, 242, 83, .35);
  }

  .hero {
    min-height: 690px;
    padding-top: 50px;
    padding-bottom: 0;
    background: var(--color-bg);
  }
  .hero::before {
    background: url('../assets/images/03_technical_drawing.png') center / cover no-repeat;
    opacity: .13;
  }
  .hero-inner {
    grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 1fr) minmax(240px, .55fr);
    gap: 28px;
    align-items: start;
  }
  .hero-content {
    grid-column: 1;
    max-width: 560px;
    padding-top: 4px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: .75rem;
    letter-spacing: .1em;
  }
  .hero-headline {
    max-width: 590px;
    margin-bottom: 16px;
    font-size: clamp(3.45rem, 4.25vw, 4.45rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    text-wrap: initial;
  }
  .hero-headline br {
    display: block;
  }
  .hero-headline br:nth-of-type(3) {
    display: none;
  }
  .hero-intro {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-muted);
  }
  .hero-benefits {
    gap: 8px;
    max-width: 520px;
  }
  .hero-benefits li {
    min-height: 0;
    gap: 10px;
    border-bottom: 0;
    font-size: .9rem;
    font-weight: 700;
  }
  .hero-benefits li::before {
    display: block;
  }
  .benefit-icon,
  .benefit-copy--mobile {
    display: none;
  }
  .benefit-copy--desktop {
    display: inline;
  }
  #upload-form {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .upload-form-wrap {
    border-radius: var(--radius-xl);
    padding: 22px 24px 20px;
    background: var(--color-white);
    border-color: var(--color-border);
    box-shadow: 0 8px 36px rgba(7, 55, 47, .11);
  }
  .upload-form-wrap h2 {
    margin-bottom: 14px;
    font-size: 1.15rem;
  }
  .upload-zone {
    min-height: 0;
    padding: 18px 16px;
    border-radius: var(--radius-lg);
  }
  .upload-zone__icon {
    width: 36px;
    height: 36px;
  }
  .upload-zone__text-primary {
    font-size: .95rem;
  }
  .upload-zone__text-secondary {
    font-size: .8rem;
  }
  .upload-zone__btn {
    min-height: 0;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
  }
  .floating-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .form-fields {
    gap: 10px;
  }
  .form-group--icon .field-icon {
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
  }
  .form-group--icon input {
    min-height: 0;
    padding: 10px 12px 10px 36px !important;
    border-radius: var(--radius-md);
    font-size: .92rem;
  }
  .privacy-row label,
  .form-microcopy {
    font-size: .75rem;
  }
  .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  .form-submit .btn {
    min-height: 0;
    padding: 16px;
    border-radius: var(--radius-md);
  }
  .hero-visual {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    margin-right: -48px;
    padding-top: 0;
    overflow: hidden;
  }
  .hero-visual picture {
    display: block;
    height: 520px;
  }
  .hero-product-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: left center;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero-inner {
    grid-template-columns: minmax(310px, .9fr) minmax(330px, 1fr) minmax(210px, .55fr);
    gap: 20px;
  }
  .hero-headline {
    font-size: clamp(3rem, 4vw, 3.65rem);
  }
  .hero-visual {
    margin-right: -32px;
  }
}

@media (max-width: 899px) {
  .site-header {
    background: rgba(250, 248, 243, .98);
  }
  .header-inner {
    min-height: 70px;
    padding-inline: 20px;
    padding-block: 8px;
  }
  .header-brand {
    gap: 10px;
  }
  .header-brand__mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .header-brand__text {
    font-size: clamp(.95rem, 3.8vw, 1.25rem);
  }
  .header-brand__badge {
    min-width: 54px;
    height: 34px;
    padding-inline: 11px;
    font-size: .85rem;
  }
  .header-phone--mobile svg {
    width: 30px;
    height: 30px;
  }
  .hamburger {
    width: 44px;
    height: 44px;
  }
  .hamburger span {
    width: 30px;
    height: 3px;
  }
  .mobile-phone-text {
    font-size: clamp(.86rem, 3.2vw, 1rem);
    font-weight: 800;
    letter-spacing: .02em;
  }

  .hero {
    padding-top: 66px;
    padding-bottom: 30px;
    background:
      linear-gradient(180deg, rgba(250, 248, 243, .98), rgba(250, 248, 243, .92)),
      var(--color-bg);
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(250, 248, 243, .98) 0%, rgba(250, 248, 243, .9) 48%, rgba(250, 248, 243, .74) 100%),
      image-set(url('../assets/images/03_technical_drawing.webp') type('image/webp'), url('../assets/images/03_technical_drawing.png') type('image/png')) right 34% / 760px auto no-repeat;
    opacity: .36;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding-inline: 20px;
  }
  .hero-content {
    grid-column: 1;
    max-width: none;
  }
  .hero-eyebrow {
    margin-bottom: 20px;
    font-size: clamp(.9rem, 3vw, 1rem);
    letter-spacing: .18em;
  }
  .hero-headline {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(3.05rem, 12.6vw, 5.05rem);
    line-height: .98;
    letter-spacing: -.06em;
  }
  .hero-headline br {
    display: block;
  }
  .hero-intro {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(1.08rem, 4.15vw, 1.35rem);
    line-height: 1.55;
  }
  .hero-benefits {
    gap: 0;
    max-width: none;
  }
  .hero-benefits li {
    min-height: 62px;
    gap: 18px;
    border-bottom: 1px solid rgba(7, 61, 52, .13);
    font-size: clamp(1rem, 3.8vw, 1.24rem);
    font-weight: 600;
  }
  .hero-benefits li::before {
    display: none;
  }
  .benefit-icon {
    display: inline-flex;
  }
  .benefit-copy--mobile {
    display: inline;
  }
  .benefit-copy--desktop {
    display: none;
  }
  .hero-visual {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
    width: min(43vw, 385px);
    min-width: 150px;
    margin-top: -560px;
    overflow: visible;
    z-index: 2;
  }
  .hero-visual picture {
    height: auto;
  }
  .hero-product-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: .72 / 1;
    object-fit: cover;
    object-position: 48% 54%;
    border: 1px solid rgba(7, 61, 52, .1);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(7, 61, 52, .12);
  }
  #upload-form {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
}

@media (min-width: 430px) and (max-width: 899px) {
  .hero-inner {
    grid-template-columns: minmax(0, .64fr) minmax(132px, .36fr);
    column-gap: 14px;
    row-gap: 24px;
  }
  .hero-content {
    grid-column: 1 / -1;
  }
  .hero-headline {
    max-width: 64%;
    font-size: clamp(2.65rem, 11.2vw, 4.75rem);
  }
  .hero-intro,
  .hero-benefits {
    max-width: 64%;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    width: 100%;
    margin-top: 88px;
  }
  .hero-product-img {
    aspect-ratio: .72 / 1;
  }
  #upload-form {
    grid-column: 1 / -1;
    margin-top: 16px;
  }
}

@media (max-width: 429px) {
  .hero-headline {
    max-width: 100%;
  }
  .hero-visual {
    width: min(58vw, 240px);
    margin-top: 6px;
  }
  .hero-product-img {
    aspect-ratio: 1 / .86;
  }
}

@media (max-width: 399px) {
  .mobile-phone-text {
    display: none;
  }
  .hero-inner {
    padding-inline: 16px;
  }
}

@media (min-width: 400px) and (max-width: 429px) {
  .header-inner {
    padding-inline: 12px;
  }
  .header-mobile-actions {
    gap: 0;
  }
  .header-phone--mobile {
    padding-inline: 0;
  }
}

.hero-line {
  display: block;
}

@media (min-width: 900px) {
  .hero-line {
    display: inline;
  }
  .hero-line--upload::after,
  .hero-line--receive::after,
  .hero-line--tomorrow::after {
    content: ' ';
  }
  .hero-line--state::after {
    content: '';
    display: block;
  }
}

.hero-copy-mobile,
.hero-title-mobile,
.form-microcopy__mobile {
  display: none;
}

@media (max-width: 767px) {
  .site-header {
    background: rgba(250, 249, 246, .98);
    border-bottom: 1px solid #DADDD9;
    box-shadow: none;
  }
  .header-inner {
    min-height: 72px;
    padding: 8px 12px;
    gap: 6px;
  }
  .header-brand {
    gap: 10px;
  }
  .header-brand__mark {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }
  .header-brand__text {
    font-size: clamp(.98rem, 4.2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -.035em;
  }
  .header-brand__badge {
    min-width: 52px;
    height: 32px;
    padding-inline: 10px;
    border-radius: 6px;
    font-size: .82rem;
  }
  .header-mobile-actions {
    gap: 4px;
    min-width: 0;
  }
  .header-phone--mobile {
    min-width: 40px;
    min-height: 44px;
    padding: 0;
    gap: 8px;
  }
  .header-phone--mobile svg {
    width: 29px;
    height: 29px;
  }
  .mobile-phone-text {
    display: inline;
    font-size: clamp(.84rem, 3.1vw, .96rem);
    font-weight: 800;
    white-space: nowrap;
  }
  .hamburger {
    width: 40px;
    height: 44px;
    flex: 0 0 40px;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
  }

  .hero {
    padding: 0 0 24px;
    background: #FAF9F6;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(250,249,246,.98) 0%, rgba(250,249,246,.88) 54%, rgba(250,249,246,.58) 100%),
      image-set(url('../assets/images/01_hero_window_profile.webp') type('image/webp'), url('../assets/images/01_hero_window_profile.png') type('image/png')) right top / auto 58vh no-repeat;
    opacity: .22;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
  }
  .hero-content {
    width: 100%;
    max-width: none;
    padding: 54px 0 32px;
    text-align: center;
  }
  .hero-copy-desktop,
  .hero-title-desktop,
  .hero-visual,
  .hero-benefits {
    display: none !important;
  }
  .hero-copy-mobile,
  .hero-title-mobile {
    display: inline;
  }
  .hero-eyebrow {
    margin: 0 0 18px;
    color: var(--color-lime);
    font-size: clamp(.82rem, 3.2vw, .95rem);
    font-weight: 700;
    letter-spacing: .18em;
    text-align: center;
  }
  .hero-headline {
    margin: 0 auto 18px;
    max-width: 720px;
    color: var(--color-green-dark);
    font-size: clamp(1.85rem, 7.25vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    text-align: center;
  }
  .hero-intro {
    margin: 0 auto;
    max-width: 640px;
    color: #586475;
    font-size: clamp(1rem, 3.95vw, 1.12rem);
    line-height: 1.5;
    text-align: center;
  }

  #upload-form {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    scroll-margin-top: 88px;
  }
  .upload-form-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 22px 20px 24px;
    border: 1px solid rgba(7, 61, 52, .11);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 38px rgba(7, 55, 47, .08);
  }
  .upload-form-wrap h2 {
    margin: 4px 0 22px;
    color: var(--color-green-dark);
    font-size: clamp(1.45rem, 6vw, 1.75rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
  }
  .upload-zone {
    width: 100%;
    min-height: 252px;
    margin: 0 0 18px;
    padding: 28px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #D7DCD8;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    text-align: center;
  }
  .upload-zone__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
  }
  .upload-zone__icon svg {
    width: 58px;
    height: 58px;
  }
  .upload-zone__text-primary {
    margin: 0 0 6px;
    color: var(--color-green-dark);
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
  }
  .upload-zone__text-secondary {
    margin: 0;
    color: #647082;
    font-size: clamp(.96rem, 3.8vw, 1.05rem);
    line-height: 1.35;
  }
  .upload-zone__btn {
    min-height: 50px;
    margin-top: 18px;
    padding: 12px 28px;
    border-radius: 8px;
    background: var(--color-green-dark);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
  }
  .file-preview {
    margin-bottom: 16px;
    border-radius: 14px;
  }
  .floating-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .form-fields {
    gap: 12px;
    margin-bottom: 16px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-group--icon .field-icon {
    left: 16px;
    top: 50%;
    width: 22px;
    height: 22px;
    color: #687282;
  }
  .form-group--icon input {
    width: 100%;
    min-height: 62px;
    padding: 16px 16px 16px 52px !important;
    border: 1px solid #E0E4E1;
    border-radius: 12px;
    background: rgba(255, 255, 255, .9);
    color: var(--color-text);
    font-size: 16px;
    box-shadow: none;
  }
  .form-group--icon input::placeholder {
    color: #697385;
    opacity: 1;
  }
  .privacy-row {
    gap: 14px;
    margin: 2px 0 18px;
    align-items: flex-start;
  }
  .privacy-row input[type="checkbox"] {
    width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 7px;
    flex: 0 0 28px;
  }
  .privacy-row label {
    color: #596575;
    font-size: clamp(.94rem, 3.7vw, 1rem);
    line-height: 1.45;
  }
  .privacy-row label a {
    color: var(--color-green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .form-submit .btn {
    min-height: 62px;
    border-radius: 11px;
    background: var(--color-lime);
    color: var(--color-green-dark);
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: none;
  }
  .form-submit .btn:hover {
    background: var(--color-lime);
  }
  .form-submit .btn:disabled {
    opacity: .65;
  }
  .form-microcopy {
    justify-content: center;
    max-width: 420px;
    margin: 22px auto 0;
    color: #667082;
    font-size: clamp(.88rem, 3.5vw, .98rem);
    line-height: 1.45;
    text-align: left;
  }
  .form-microcopy__desktop {
    display: none;
  }
  .form-microcopy__mobile {
    display: inline;
  }
  .form-microcopy svg {
    width: 20px;
    height: 20px;
  }

  .usp-bar {
    display: block;
    padding: 22px 0 0;
    background: transparent;
  }
  .usp-bar .container {
    padding-inline: 16px;
  }
  .usp-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
  }
  .usp-item {
    min-height: 142px;
    padding: 18px 10px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0 !important;
    border-radius: 14px;
    background: linear-gradient(145deg, #064B3F, #032F28);
    color: #fff;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  }
  .usp-item::before {
    display: none !important;
  }
  .usp-item__icon {
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .usp-item__text {
    align-items: center;
    gap: 4px;
  }
  .usp-item__number {
    color: #fff;
    font-size: clamp(1.04rem, 4.4vw, 1.32rem);
    line-height: 1.12;
    letter-spacing: -.035em;
  }
  .usp-item__label {
    color: rgba(255,255,255,.78);
    font-size: clamp(.82rem, 3.5vw, .98rem);
    line-height: 1.25;
  }
  .usp-item__number span {
    color: var(--color-lime);
  }
  .products {
    overflow: hidden;
  }
  .products-scroll-outer {
    contain: paint;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .products-scroll-outer::-webkit-scrollbar {
    display: none;
  }
  .products-grid {
    width: max-content;
    max-width: none;
    grid-template-columns: repeat(7, minmax(190px, 58vw));
    gap: 12px;
    padding-bottom: 6px;
  }
  .products-grid > li {
    scroll-snap-align: start;
  }
}

@media (max-width: 374px) {
  .mobile-phone-text {
    display: none;
  }
  .header-inner {
    padding-inline: 16px;
  }
  .hero-content {
    padding-top: 42px;
  }
  .upload-form-wrap {
    padding-inline: 14px;
  }
  .upload-zone {
    min-height: 224px;
    padding-inline: 12px;
  }
  .usp-item {
    min-height: 132px;
    padding-inline: 8px;
  }
}

@media (min-width: 375px) and (max-width: 430px) {
  .header-inner {
    padding-inline: 8px;
    gap: 4px;
  }
  .header-brand {
    gap: 7px;
  }
  .header-brand__mark {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .header-brand__text {
    font-size: .82rem;
  }
  .header-brand__badge {
    min-width: 46px;
    height: 30px;
    padding-inline: 8px;
    font-size: .76rem;
  }
  .header-mobile-actions {
    gap: 2px;
  }
  .header-phone--mobile {
    gap: 4px;
  }
  .header-phone--mobile svg {
    width: 25px;
    height: 25px;
  }
  .mobile-phone-text {
    font-size: .78rem;
  }
  .hamburger {
    width: 36px;
    flex-basis: 36px;
  }
  .hamburger span {
    width: 26px;
  }
}
