/* ==========================================================
   SCULPTOM — Design System
   ========================================================== */

:root {
  --bg:          #f5f7fa;
  --surface:     #ffffff;
  --surface-2:   #edf0f5;
  --border:      #dde3ec;
  --border-2:    #bfcad6;

  --text:        #1a2430;
  --text-2:      #5a6e80;
  --text-3:      #9aaab8;

  --heading:     #0d1520;
  --muted:       #6b7f90;

  --btn-pri-bg:  #0d1520;
  --btn-pri-fg:  #ffffff;
  --btn-sec-bd:  #bfcad6;
  --btn-sec-fg:  #1a2430;

  --link-hover:  #0d1520;

  --accent:      #0d1520;
  --accent-2:    #c0cdd8;

  --font-sans: 'IBM Plex Sans', Arial, sans-serif;
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --ease:   cubic-bezier(.4,0,.2,1);
  --t:      0.22s var(--ease);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section--alt { background: var(--surface); }
.section--border { border-top: 1px solid var(--border); }

/* ── Typography ──────────────────────────────────────────── */
.display {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--heading);
}
.h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--heading);
}
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.body-lg { font-size: 1.1rem; color: var(--text-2); line-height: 1.7; }
.body    { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: none;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--btn-pri-bg);
  color: var(--btn-pri-fg);
}
.btn-primary:hover { opacity: 0.86; }

.btn-secondary {
  background: transparent;
  color: var(--btn-sec-fg);
  border: 1px solid var(--btn-sec-bd);
}
.btn-secondary:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}
.btn-lg { padding: 15px 32px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.83rem; }

.btn-link {
  background: none; border: none; padding: 0;
  color: var(--text-2); font-size: 0.9rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--t);
}
.btn-link:hover { color: var(--link-hover); }
.btn-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.btn-link:hover svg { transform: translateX(3px); }

/* ── Photo placeholder ───────────────────────────────────── */
.photo {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.photo--16-9 { aspect-ratio: 16 / 9; }
.photo--4-3  { aspect-ratio: 4  / 3; }
.photo--3-2  { aspect-ratio: 3  / 2; }
.photo--1-1  { aspect-ratio: 1  / 1; }
.photo--3-4  { aspect-ratio: 3  / 4; }
.photo--hero { aspect-ratio: 5  / 6; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.media-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  z-index: 2;
  pointer-events: none;
}

.photo:has(> img) .media-label,
.home-hero-media:has(> video) .media-label { display: none; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t), padding var(--t), border-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(245, 247, 250, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 46px; width: auto;
  display: block;
  transition: height var(--t);
}
.nav.stuck .nav-logo img { height: 38px; }

/* Nav over fullscreen hero */
.page-home .nav:not(.stuck) { border-bottom-color: transparent; }
.page-home .nav:not(.stuck) .nav-logo img { filter: brightness(0) invert(1); }
.page-home .nav:not(.stuck) .nav-link { color: rgba(255,255,255,0.82); }
.page-home .nav:not(.stuck) .nav-link:hover,
.page-home .nav:not(.stuck) .nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }
.page-home .nav:not(.stuck) .lang-link { color: rgba(255,255,255,0.65); }
.page-home .nav:not(.stuck) .lang-link:hover { color: #fff; }
.page-home .nav:not(.stuck) .lang-link.active { color: #fff; }
.page-home .nav:not(.stuck) .lang-sep { color: rgba(255,255,255,0.35); }
.page-home .nav:not(.stuck) .nav-burger span { background: #fff; }
.page-home .nav:not(.stuck) .btn-primary {
  background: #fff;
  color: var(--heading);
}

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-link {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--heading); }
.nav-link.active { color: var(--heading); background: var(--surface-2); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Lang switch (PL | EN | DE) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
  transition: color var(--t);
}
.lang-link:hover { color: var(--heading); }
.lang-link.active { color: var(--heading); }
.lang-sep {
  color: var(--border-2);
  font-size: 0.78rem;
  user-select: none;
}
.lang-switch--lg { gap: 12px; }
.lang-switch--lg .lang-link { font-size: 1.05rem; }
.lang-switch--lg .lang-sep { font-size: 1rem; }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px; transition: var(--t);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 99;
  padding: 100px 32px 40px; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.6rem; font-weight: 400;
  color: var(--text-2); padding: 16px 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0; letter-spacing: -0.02em;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active { color: var(--heading); background: none; }

.nav-mobile-bottom {
  margin-top: auto; display: flex; align-items: center;
  gap: 12px; padding-top: 32px; flex-wrap: wrap;
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero { padding: 160px 0 72px; border-bottom: 1px solid var(--border); }
.page-hero .label { margin-bottom: 20px; }
.page-hero .h1   { max-width: 640px; }

/* ── Home hero (fullscreen video) ────────────────────────── */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--surface-2);
}

.home-hero-media img,
.home-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 21, 32, 0.35) 0%,
    rgba(13, 21, 32, 0.15) 45%,
    rgba(13, 21, 32, 0.72) 100%
  );
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 88px;
  color: #fff;
}

.home-hero-content .display,
.home-hero-content .hero-lead { color: #fff; }
.home-hero-content .hero-label { color: rgba(255,255,255,0.72); }

.home-hero-content .display { margin-bottom: 24px; max-width: 720px; }
.home-hero-content .hero-lead { max-width: 520px; margin-bottom: 40px; color: rgba(255,255,255,0.88); }
.home-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.home-hero-actions .btn-secondary {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.home-hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.65);
}
.home-hero-actions .btn-primary {
  background: #fff;
  color: var(--heading);
}

/* ── About strip ─────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip-text .label { margin-bottom: 20px; }
.about-strip-text .h2    { margin-bottom: 20px; }
.about-strip-text .body  { margin-bottom: 32px; }

/* ── Europe delivery strip ───────────────────────────────── */
.europe-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.europe-strip-text .label { margin-bottom: 20px; }
.europe-strip-text .h2 { margin-bottom: 16px; max-width: 480px; }
.europe-strip-text .body { max-width: 460px; }

.europe-map {
  min-height: 280px;
}

.cert-list { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-tag {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--text-3);
}

/* ── Services preview (home) ─────────────────────────────── */
.services-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.svc-card {
  background: var(--surface); padding: 40px;
  transition: background var(--t);
  display: flex; flex-direction: column; gap: 16px;
}
.svc-card:hover { background: var(--surface-2); }
.svc-card .body { flex: 1; }

/* ── Numbers strip ───────────────────────────────────────── */
.numbers-strip {
  width: min(1160px, 100% - 64px); margin: 64px auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-sizing: border-box;
}
.number-item { padding: 28px 32px; background: var(--surface); }
.number-item .num {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem); font-weight: 300;
  letter-spacing: -0.03em; color: var(--heading);
  line-height: 1; margin-bottom: 5px;
}
.number-item .num-label { font-size: 0.8rem; color: var(--text-2); }

/* ── Machine park ────────────────────────────────────────── */
.machines-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.machine-card {
  background: var(--surface); padding: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.machine-card .machine-icon {
  width: 40px; height: 40px; margin-bottom: 4px;
  color: var(--text-3);
}
.machine-card .machine-icon svg { width: 40px; height: 40px; }
.machine-card .h3   { font-size: 1rem; }
.machine-card .body { font-size: 0.85rem; }

/* ── Service detail (services page) ─────────────────────── */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail--reverse .svc-detail-photo { order: -1; }
.svc-detail-text .label { margin-bottom: 16px; }
.svc-detail-text .h2    { margin-bottom: 20px; }
.svc-detail-text .body  { margin-bottom: 28px; }

.svc-features {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
}
.svc-feature {
  padding: 13px 18px; font-size: 0.88rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.svc-feature:last-child { border-bottom: none; }
.svc-feature::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-2); flex-shrink: 0;
}

/* ── Process ─────────────────────────────────────────────── */
.process-list {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.process-step {
  padding: 32px 24px; border-right: 1px solid var(--border);
  background: var(--surface);
}
.process-step:last-child { border-right: none; }
.process-step .step-n {
  font-size: 1.8rem; font-weight: 700;
  color: var(--border-2); line-height: 1; margin-bottom: 16px;
}
.process-step .h3   { font-size: 0.95rem; margin-bottom: 10px; }
.process-step .body { font-size: 0.84rem; }

/* ── Portfolio grid ──────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card { display: flex; flex-direction: column; gap: 12px; }
.portfolio-card .photo { cursor: pointer; transition: border-color var(--t); }
.portfolio-card .photo:hover { border-color: var(--border-2); }
.portfolio-card .label { margin-bottom: 0; }
.portfolio-card .h3    { font-size: 0.98rem; }
.portfolio-card .body  { font-size: 0.84rem; }

.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 7px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text-2); font-size: 0.83rem; font-weight: 500;
  transition: var(--t); font-family: inherit;
}
.filter-btn:hover  { border-color: var(--border-2); color: var(--text); }
.filter-btn.active { background: var(--btn-pri-bg); border-color: var(--btn-pri-bg); color: var(--btn-pri-fg); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.contact-info .label { margin-bottom: 20px; }
.contact-info .h2    { margin-bottom: 16px; }
.contact-info .body  { margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-row { display: flex; flex-direction: column; gap: 4px; }
.contact-row .contact-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
}
.contact-row a, .contact-row span {
  font-size: 0.95rem; color: var(--text-2); transition: var(--t);
}
.contact-row a:hover { color: var(--heading); }

.company-block {
  padding: 22px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: 0.88rem; color: var(--text-2); line-height: 1.9;
}
.company-block strong { color: var(--text); }

/* ── Form ────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 16px;
  color: var(--text); font-family: var(--font-sans); font-size: 0.93rem;
  outline: none; transition: border-color var(--t); width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--border-2); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239aaab8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-field select option { background: var(--surface); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--text-3); margin-top: 14px; }

.form-success {
  padding: 48px 24px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
}
.form-success .h3  { margin-bottom: 8px; }
.form-success .body { font-size: 0.92rem; }
.form-error {
  font-size: 0.88rem; color: #b42318;
  margin-top: 12px; padding: 12px 14px;
  background: #fef3f2; border: 1px solid #fecdca; border-radius: var(--r-md);
}

/* ── CTA banner ──────────────────────────────────────────── */
.cta-banner { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-banner .h2  { max-width: 560px; margin-bottom: 8px; }
.cta-banner .body { max-width: 480px; }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--surface); padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 20px; }
.footer-brand .body { max-width: 260px; }

.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 0.88rem; color: var(--text-2); transition: color var(--t);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-bottom span { font-size: 0.82rem; color: var(--text-3); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text-3); transition: var(--t);
}
.footer-social a:hover { border-color: var(--border-2); color: var(--text); }
.footer-social svg { width: 16px; height: 16px; }

/* ── Section label ───────────────────────────────────────── */
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; }
.section-label .label { flex-shrink: 0; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Animations ──────────────────────────────────────────── */
[data-fade] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-fade].in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .europe-strip { grid-template-columns: 1fr; gap: 40px; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .machines-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail--reverse .svc-detail-photo { order: 0; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--border); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(4),
  .process-step:nth-child(5) { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }
  .nav-menu  { display: none; }
  .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .home-hero-content { padding: 140px 0 64px; }
  .home-hero-content .display { font-size: 2.4rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .numbers-strip { grid-template-columns: 1fr 1fr; }
  .machines-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-list { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .page-hero { padding: 130px 0 56px; }
}

@media (max-width: 480px) {
  .home-hero-content .display { font-size: 2rem; }
  .numbers-strip  { grid-template-columns: 1fr; }
  .home-hero-actions { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; }
}

/* ── Site lock (under construction) ──────────────────────── */
.site-lock {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--bg);
  text-align: center;
}
.site-lock-inner {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site-lock img {
  height: 46px;
  width: auto;
}
.site-lock .h2 { margin-bottom: 4px; }
.site-lock .body { color: var(--text-2); font-size: 0.95rem; }
.site-lock-email {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading);
  margin-top: 8px;
}
.site-lock-email:hover { text-decoration: underline; }

body.is-locked { overflow: hidden; }

/* ── Lang splash (root) ──────────────────────────────────── */
.lang-splash {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 40px; padding: 40px;
}
.lang-splash img { height: 52px; width: auto; }
.lang-splash-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
