:root {
  --green: #1b5e3b;
  --green-dark: #144a2e;
  --green-accent: #2f9e57;
  --green-soft: #e8f4ec;
  --green-muted: #6b8f78;
  --text: #1a2a22;
  --muted: #5d6f66;
  --border: #dce6e0;
  --bg: #f4f7f5;
  --card: #ffffff;
  --red: #dc2626;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(20, 50, 35, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green);
}
.logo-text { font-weight: 800; font-size: 22px; letter-spacing: -0.03em; }
.logo-mark { display: flex; }
.logo-light .logo-text { color: #fff; }

/* ---------- Landing hero ---------- */
.landing { background: #fff; }

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto minmax(460px, 1.15fr);
  min-height: 100vh;
  position: relative;
  align-items: stretch;
}

.hero-left {
  padding: 28px 20px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.hero-left .logo { margin-bottom: 36px; align-self: flex-start; }

.hero-left-main {
  display: block;
}

.hero-left h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.hero-left h1 span { display: block; color: var(--green-accent); white-space: nowrap; }

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-video {
  position: relative;
  z-index: 1;
  width: 280px;
  height: min(74vh, 640px);
  margin: auto 12px;
  align-self: center;
  justify-self: center;
  border-radius: 24px;
  overflow: hidden;
  background: #122018;
  box-shadow: none;
  filter: none;
}
.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checks {
  list-style: none;
  margin-bottom: 36px;
}
.checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.checks li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-accent);
  color: #fff;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f6f4;
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  width: fit-content;
}
.avatars { display: flex; }
.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 13px; line-height: 1.25; color: var(--muted); }
.proof-text strong { display: block; color: var(--text); font-size: 13.5px; }
.stars { color: var(--green-accent); letter-spacing: 1px; font-size: 14px; }

.hero-right {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.12));
}

.hero-forms {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 28px 24px;
}

.quote-card {
  width: min(460px, 100%);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 16px;
  box-shadow: var(--shadow);
  scroll-margin-top: 16px;
}

.stuk-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6faf7;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.stuk-card strong {
  font-size: 13px;
  color: var(--green);
}
.stuk-card input[type="text"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13.5px;
  background: #fff;
}
.stuk-card input[type="text"]:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 158, 87, 0.12);
}

.photo-select-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px;
  border-radius: 12px;
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.photo-option-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #eef4f0;
  border-radius: 8px;
  overflow: hidden;
}
.photo-option img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.photo-option-label {
  line-height: 1.2;
  text-align: center;
}
.photo-option-hint {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  line-height: 1.25;
  margin-top: -2px;
}
.photo-option:hover {
  border-color: var(--green-muted);
  transform: translateY(-1px);
}
.photo-option.is-selected {
  background: var(--green-soft);
  border-color: var(--green-accent);
  box-shadow: 0 0 0 2px rgba(47, 158, 87, 0.25);
  transform: none;
}

.stuk-sublabel {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 2px 0 0;
}
.kleur-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.kleur-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  gap: 4px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 5px;
  border-radius: 10px;
  font: inherit;
  font-size: 10.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.kleur-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  display: block;
}
.kleur-option span {
  line-height: 1.15;
  text-align: center;
}
.kleur-option:hover {
  border-color: var(--green-muted);
  transform: translateY(-1px);
}
.kleur-option.is-selected {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 2px rgba(47, 158, 87, 0.25);
  background: var(--green-soft);
  transform: none;
}

.maat-lijst {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.maat-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: center;
}
.maat-item label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.maat-item input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}
.maat-item input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 158, 87, 0.12);
}

.counter-field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.counter {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 8px;
  background: #fff;
}
.counter button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.counter button:hover { background: #d7ecde; }
.counter input {
  width: 100%;
  border: 0;
  outline: none;
  text-align: center;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

.quote-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--green);
  margin-bottom: 6px;
}
.quote-head h2 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}
.cal-icon { color: var(--green); margin-top: 2px; }
.quote-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px 32px;
}

.step-dots {
  display: flex;
  gap: 6px;
  margin: 0 0 16px 32px;
}
.step-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5e3da;
}
.step-dots span.is-on { background: var(--green-accent); }

.wizard-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-top: 6px;
}
.wizard-nav .btn-primary { margin-top: 0; }
.btn-back {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-back:hover { border-color: var(--green); color: var(--green); }
.step-note, .step-empty {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 12px;
  line-height: 1.45;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.input-icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 10px;
  background: #fff;
}
.input-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8aa193;
  margin-top: 2px;
}
.input-icon input,
.input-icon textarea,
.input-icon select {
  border: 0;
  outline: none;
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  background: transparent;
  color: var(--text);
  resize: vertical;
}
.input-icon:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 158, 87, 0.12); }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #8aa193;
  border-bottom: 2px solid #8aa193;
  transform: rotate(45deg);
  margin-top: 4px;
}

.btn-primary {
  width: 100%;
  border: 0;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:disabled { opacity: 0.7; cursor: wait; }

.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11.5px;
  margin-top: 10px;
}

.msg { display: none; padding: 10px 12px; border-radius: 10px; font-size: 13px; margin-bottom: 12px; }
.msg.success { display: block; background: #dcfce7; color: #166534; }
.msg.error { display: block; background: #fee2e2; color: #991b1b; }

/* products */
.products {
  padding: 72px 40px 40px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.products h2 {
  color: var(--green);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.product-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}
.product-grid figcaption {
  margin-top: 12px;
  font-weight: 700;
  font-size: 16px;
}

.usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 20px auto 72px;
  padding: 8px 40px 0;
  text-align: center;
}
.usp-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  color: var(--green-accent);
  display: grid;
  place-items: center;
}
.usp-icon svg { width: 36px; height: 36px; }
.usp h3 { font-size: 16px; margin-bottom: 6px; }
.usp p { color: var(--muted); font-size: 14px; }

.site-footer {
  background: var(--green);
  color: #e8f4ec;
  padding: 48px 40px 18px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.footer-brand p { margin-top: 12px; max-width: 260px; font-size: 14px; line-height: 1.5; color: #d5eadc; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.footer-social p { font-weight: 700; margin-bottom: 10px; color: #fff; }
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.footer-rating p { font-size: 14px; line-height: 1.5; }
.stars.gold { color: #f5c542; font-size: 22px; letter-spacing: 2px; margin-top: 8px; }
.footer-copy { text-align: center; margin-top: 28px; font-size: 12px; opacity: 0.7; }
.footer-copy a { color: #fff; }

@media (max-width: 1280px) {
  .hero { grid-template-columns: minmax(280px, 1fr) auto minmax(400px, 1.1fr); }
  .hero-left { padding-right: 16px; }
  .hero-video { width: 240px; height: min(68vh, 560px); margin: auto 8px; }
  .hero-forms { padding: 64px 20px 24px; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 24px 24px 12px; }
  .hero-left .logo { margin-bottom: 28px; align-self: center; }
  .hero-left-main { display: block; }
  .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-copy .lead { max-width: 36em; }
  .hero-copy .checks {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .hero-copy .social-proof { margin-left: auto; margin-right: auto; }
  .hero-video {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 20px);
    max-width: none;
    height: min(72vh, 680px);
    justify-self: center;
    margin: 8px auto 20px;
    border-radius: 20px;
    box-shadow: none;
  }
  .hero-right { min-height: auto; padding: 12px 8px 28px; }
  .hero-photo { border-radius: 0; }
  .hero-forms {
    position: relative;
    inset: auto;
    justify-content: center;
    margin-top: 24px;
    padding: 0;
  }
  .quote-card {
    width: 100%;
    max-width: none;
    max-height: none;
    padding: 16px 12px 14px;
    border-radius: 14px;
  }
  .photo-select-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .kleur-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .kleur-option {
    min-width: 0;
    width: 100%;
    align-items: stretch;
    padding: 5px;
  }
  .kleur-option img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .product-grid, .usps, .footer-inner { grid-template-columns: 1fr 1fr; }
  .products, .usps, .site-footer { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 640px) {
  .hero-left { padding: 20px 16px 8px; }
  .hero-left .logo { align-self: center; }
  .hero-left h1 { font-size: 34px; }
  .hero-video {
    width: calc(100% - 16px);
    height: min(70vh, 620px);
    margin: 4px auto 16px;
    border-radius: 18px;
  }
  .hero-right { padding: 8px 6px 24px; }
  .quote-card { padding: 14px 10px 12px; border-radius: 12px; }
  .stuk-card { padding: 10px 8px; }
  .photo-option { font-size: 11px; padding: 5px; }
  .photo-option-hint { font-size: 9.5px; }
  .kleur-option { font-size: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .product-grid, .usps, .footer-inner { grid-template-columns: 1fr; }
  .social-proof { flex-wrap: wrap; border-radius: 18px; }
}

.mobile-quote-bar {
  display: none;
}
@media (max-width: 1100px) {
  .mobile-quote-bar {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    align-items: center;
    justify-content: center;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--green);
    color: #fff;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(20, 50, 35, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .mobile-quote-bar.is-away {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }
  body.landing { padding-bottom: 84px; }
}

/* ---------- Auth / dashboard ---------- */
body.app { background: var(--bg); min-height: 100vh; }
.container { max-width: 560px; margin: 0 auto; padding: 24px 16px 60px; }
.container.wide { max-width: 1180px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field label .optional { color: var(--muted); font-weight: 400; font-size: 12px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 10px; font-size: 15px; font-family: inherit; background: #fbfcfe;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 158, 87, 0.12);
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn {
  display: inline-block; width: 100%; padding: 13px; border: none; border-radius: 10px;
  background: var(--green); color: #fff; font-size: 16px; font-weight: 600;
  cursor: pointer;
}
.btn:hover { background: var(--green-dark); }
.btn.small { width: auto; padding: 8px 16px; font-size: 14px; }
.btn.ghost { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn.ghost:hover { background: var(--green-soft); }
.btn.danger { background: transparent; color: var(--red); border: 1px solid #fca5a5; }
.btn.danger:hover { background: #fef2f2; }

.auth-hero { text-align: center; padding: 32px 0 24px; }
.auth-hero h1 { font-size: 28px; margin-bottom: 8px; color: var(--green); }
.auth-hero p { color: var(--muted); }
.footer-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 22px; }
.footer-note a { color: var(--green); text-decoration: none; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-bottom: 1px solid var(--border); padding: 14px 24px;
}
.topbar .user-info { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.role-badge {
  background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase;
}
.role-badge.admin { background: #fef3c7; color: #92400e; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 22px 0; }
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px;
}
.stat .label { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.stat .value { font-size: 24px; font-weight: 700; }
.stat .value.green { color: var(--green-accent); }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.toolbar input[type="search"] {
  padding: 9px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; min-width: 220px;
}

.table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: #f6faf7; font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); white-space: nowrap; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fbf9; }
td.nowrap { white-space: nowrap; color: var(--muted); font-size: 13px; }
td.klant { min-width: 180px; }
td.horren { min-width: 180px; max-width: 280px; }
td.opmerking { max-width: 180px; color: var(--muted); font-size: 13px; }
.cell-sub { color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.cell-sub a { color: var(--green); text-decoration: none; }
.cell-sub a:hover { text-decoration: underline; }
.maten {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.pill.yes { background: #dcfce7; color: #166534; }
.pill.no { background: #f1f5f9; color: #64748b; }
.pill.warn { background: #ffedd5; color: #9a3412; }

td input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--green); }
td input.bedrag {
  width: 100px; padding: 6px 8px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px;
}
.empty { text-align: center; color: var(--muted); padding: 40px; }

.modal-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45);
  align-items: center; justify-content: center; padding: 16px; z-index: 50;
}
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); padding: 26px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; }
.modal h2 { font-size: 20px; margin-bottom: 18px; }

@media (max-width: 600px) {
  .row2 { grid-template-columns: 1fr; }
}
