/* =========================================================
   QMtex® — modern responsive stylesheet
   Brand: Build to resist. Designed to last.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --c-yellow:#ECD04E;
  --c-blue:#3C567A;
  --c-green:#588347;
  --c-red:#AA3E32;
  --c-purple:#764077;

  --c-ink:#1F2328;
  --c-ink-soft:#3a4048;
  --c-muted:#6b7380;
  --c-line:#e6e7ea;
  --c-bg:#ffffff;
  --c-bg-soft:#f7f7f5;
  --c-bg-dark:#1a1c20;

  --max: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 8px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.14);

  --font-body:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display:"Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  line-height: 1.6;
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--c-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 3rem; }
.section-head h2 { margin: .25rem 0 1rem; }
.section-head.light h2, .section-head.light p { color: #fff; }
.section-intro { color: var(--c-muted); font-size: 1.1rem; }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.grid-align { align-items: center; }
@media (max-width: 860px){
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin: 0 0 1.25rem; }
h1 .accent { color: var(--c-ink-soft); position: relative; }
h1 .accent::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:6px; background: var(--c-yellow); border-radius: 3px;
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 .5rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  background: var(--c-yellow);
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-dark { background: var(--c-ink); color: var(--c-yellow); }

.lede { font-size: 1.15rem; color: var(--c-ink-soft); max-width: 56ch; }

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  border-left: 4px solid var(--c-yellow);
  padding: .25rem 0 .25rem 1rem;
  margin: 1.5rem 0;
  color: var(--c-ink);
}

.link-arrow {
  font-weight: 700;
  display: inline-block;
  margin-top: .5rem;
  border-bottom: 2px solid var(--c-yellow);
  padding-bottom: 2px;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { text-decoration: none; color: var(--c-ink); background: var(--c-yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  border: 2px solid transparent;
}
.btn-primary { background: var(--c-ink); color: var(--c-yellow); }
.btn-primary:hover { background: var(--c-yellow); color: var(--c-ink); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--c-ink); color: var(--c-ink); }
.btn-ghost:hover { background: var(--c-ink); color: var(--c-yellow); text-decoration: none; }
.btn-outline { border-color: var(--c-ink); color: var(--c-ink); }
.btn-outline:hover { background: var(--c-yellow); border-color: var(--c-yellow); text-decoration: none; }

.link-btn {
  background: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand img { height: 56px; width: auto; }

.primary-nav { display: flex; gap: 1.4rem; align-items: center; }
.primary-nav a { font-weight: 600; color: var(--c-ink-soft); font-size: .97rem; }
.primary-nav a:hover { color: var(--c-ink); text-decoration: none; }
.primary-nav a.nav-cta{
  background: var(--c-yellow); color: var(--c-ink);
  padding: .55rem .95rem; border-radius: 999px;
}
.primary-nav a.nav-cta:hover { background: var(--c-ink); color: var(--c-yellow); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 10px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--c-ink);
  margin: 5px 0; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px){
  .nav-toggle { display: block; }
  .primary-nav{
    position: absolute; top: 76px; right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--c-line);
    padding: .5rem 1rem 1.25rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .primary-nav a { width: 100%; padding: .9rem .25rem; border-bottom: 1px solid var(--c-line); }
  .primary-nav a.nav-cta { margin-top: .75rem; text-align: center; }
  .primary-nav.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
    box-shadow: var(--shadow-md);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #faf7ea 100%);
}
.hero-bg{
  position:absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(236,208,78,.35), transparent 60%),
    radial-gradient(600px 500px at 10% 80%, rgba(60,86,122,.08), transparent 60%);
  pointer-events:none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; padding-bottom: clamp(3rem,6vw,5rem); }
.hero-copy { max-width: 620px; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.hero-stats { display: flex; gap: 2rem; padding: 0; margin: 0; list-style: none; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--c-ink); font-weight: 900; }
.hero-stats span { font-size: .82rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10; object-fit: cover;
  transform: rotate(-.5deg);
}
@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual img{ transform: none; }
}

.color-strip{ display:flex; height:8px; }
.color-strip span{ flex: 1; }

/* ---------- Showroom mosaic ---------- */
.showroom {
  position: relative;
  background: var(--c-bg-dark);
  padding: 0;
  overflow: hidden;
}

/* 10 photos → 5-cols × 2-rows mosaic on desktop */
.showroom-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  width: 100%;
}
.showroom-mosaic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Tablet: 4 cols (8 visible + 2 wrap) — still uniform 2.5 rows OR 2 cols × 5 rows */
@media (max-width: 1100px){
  .showroom-mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* Overlay tagline */
.showroom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg,
              rgba(15,17,20,0)   0%,
              rgba(15,17,20,.15) 40%,
              rgba(15,17,20,.78) 100%);
  pointer-events: none;
}
.showroom-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
  margin: 0;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.showroom-quote .accent { color: var(--c-yellow); }

/* Mobile: make overlay sit in its own band below the mosaic (readability) */
@media (max-width: 700px){
  .showroom { display: flex; flex-direction: column; }
  .showroom-overlay {
    position: relative;
    inset: auto;
    background: var(--c-bg-dark);
    padding: 1.5rem 1.25rem 2rem;
    color: #fff;
  }
  .showroom-quote { text-shadow: none; }
}

/* ---------- Features (compact) ---------- */
.features { background: var(--c-bg-soft); }
.feature-grid{
  display: grid; gap: .75rem; padding: 0; margin: 0; list-style: none;
  grid-template-columns: repeat(5, 1fr); /* 10 → 5×2, uniform */
}
@media (max-width: 1100px){ .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid { grid-template-columns: 1fr; } }

.feature{
  background: #fff;
  padding: .7rem .85rem .7rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: .65rem;
  row-gap: 2px;
  align-items: center;
}
.feature::before{
  content:""; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 3px; background: var(--c); border-radius: 3px;
}
.feature:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--c) 35%, var(--c-line));
}

.feature-icon{
  grid-column: 1;
  grid-row: 1 / 3;      /* spans both rows: title + description */
  align-self: center;
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 7px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
}
.feature-icon svg { width: 16px; height: 16px; }

.feature h3 {
  grid-column: 2; grid-row: 1;
  color: var(--c-ink);
  font-size: .9rem;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.01em;
}
.feature p {
  grid-column: 2; grid-row: 2;
  margin: 0;
  color: var(--c-muted);
  font-size: .76rem;
  line-height: 1.35;
}

/* ---------- Product figure ---------- */
.product-figure { margin: 0; }
.product-figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 16/10; object-fit: cover; }
.product-figure figcaption { color: var(--c-muted); font-size: .9rem; margin-top: .6rem; font-style: italic; }

/* ---------- Circular section ---------- */
.circular { background: #fff; }
.circular-figure { margin: 0; }
.circular-figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 16/10; object-fit: cover; }

/* Yellow callout (uit catalogus) */
.callout {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.callout p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  margin: 0;
}
.callout strong { font-weight: 900; }

/* ---------- Contact (simplified) ---------- */
.contact-simple { max-width: 720px; }
.contact-simple .section-head { margin-bottom: 2rem; text-align: left; }

/* ---------- Applications ---------- */
.applications { background: var(--c-bg-soft); }
.app-grid{
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.app-card{
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.app-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.app-img{ aspect-ratio: 4/3; overflow: hidden; }
.app-img img{ width:100%; height:100%; object-fit: cover; transition: transform .4s var(--ease); }
.app-card:hover .app-img img{ transform: scale(1.04); }
.app-card h3 { margin: 1rem 1.2rem .3rem; }
.app-card p { margin: 0 1.2rem 1.2rem; color: var(--c-muted); font-size: .95rem; }

/* ---------- Colors ---------- */
.colors {
  background: var(--c-bg-dark);
  color: #fff;
  background-image:
    radial-gradient(500px 300px at 15% 20%, rgba(236,208,78,.14), transparent 70%),
    radial-gradient(500px 300px at 85% 80%, rgba(118,64,119,.18), transparent 70%);
}
.colors h2, .colors .section-intro { color: #fff; }
.swatches {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 900px; margin: 0 auto;
}
.swatch { margin: 0; text-align: center; }
.swatch-box {
  aspect-ratio: 1; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .25s var(--ease);
}
.swatch:hover .swatch-box { transform: translateY(-4px) scale(1.02); }
.swatch figcaption { margin-top: .6rem; font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Gallery / Carousel ---------- */
.gallery { background: #fff; overflow: hidden; }

.carousel {
  position: relative;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--gap)) / 3);  /* 3 visible, desktop */
  --gap: 16px;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}
.carousel-track::-webkit-scrollbar { display: none; }

@media (max-width: 920px){
  .carousel-track { grid-auto-columns: calc((100% - var(--gap)) / 2); } /* 2 visible */
}
@media (max-width: 560px){
  .carousel-track { grid-auto-columns: 100%; } /* 1 visible */
}

.g-item,
.carousel-slide {
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.g-item img,
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.carousel-slide:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-slide:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 3px; }

/* Arrows */
.carousel-btn {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.carousel-btn:hover { background: var(--c-yellow); transform: translateY(-1px); }
.carousel-btn:disabled { opacity: .35; cursor: not-allowed; }
.carousel-prev { left: clamp(-4px, 0.5vw, 8px); }
.carousel-next { right: clamp(-4px, 0.5vw, 8px); }
@media (max-width: 560px){
  .carousel-btn { display: none; } /* mobile: swipe only */
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cfd2d7;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.carousel-dot.is-active {
  background: var(--c-ink);
  width: 22px;
  border-radius: 4px;
}

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,17,20,.94);
  display: grid; place-items: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 1200px); max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox button {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.3rem;
  transition: background .2s var(--ease);
}
.lightbox button:hover { background: var(--c-yellow); color: var(--c-ink); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-close {
  top: 1rem; right: 1rem; transform: none;
  width: 44px; height: 44px; font-size: 1.8rem; line-height: 1;
}

/* ---------- Contact ---------- */
.contact { background: #fff; border-top: 1px solid var(--c-line); }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li{ display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--c-line); }
.ci-label { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--c-muted); }

.contact-form {
  display: grid; gap: 1rem;
  background: var(--c-bg-soft); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; font-size: .92rem; }
.contact-form input, .contact-form textarea{
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  background: #fff; padding: .8rem .9rem; font: inherit;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus{
  outline: none; border-color: var(--c-yellow);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-yellow) 35%, transparent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--c-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-bg-dark); color: #c9cdd3; padding: clamp(3rem, 5vw, 5rem) 0 1.5rem; }
.site-footer a { color: #c9cdd3; }
.site-footer a:hover { color: var(--c-yellow); }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 1.1fr 1fr 1fr 1fr;
}
@media (max-width: 1040px){ .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; }
.footer-grid address { font-style: normal; line-height: 1.7; font-size: .92rem; }
.footer-desc { font-size: .88rem; color: #8f959f; margin-top: .75rem; }
.legal-line { font-size: .85rem; color: #8f959f; }
.tagline { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--c-yellow); margin-top: .75rem; }
.foot-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: #8f959f;
}

/* ---------- Utility / a11y ---------- */
.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;
}
:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero-cta, .nav-toggle, .primary-nav, .lightbox, .contact-form, .site-footer { display: none; }
  .section { padding: 1rem 0; }
  .feature, .app-card { break-inside: avoid; }
}
