/**
 * kentekencheckdirect.nl – Kleurenschema (Kleurenschema.pdf)
 * RDW/Overheid-stijl: geen gradients, geen schaduwen, geen ronde fancy knoppen.
 */

/* Kenteken lettertype (c) 2004 LeFly – CC BY-SA 3.0, zie assets/fonts/kenteken/License.txt */
@font-face {
  font-family: "Kenteken";
  src: url("/assets/fonts/kenteken/Kenteken.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-blue: #1F4E79;
  --primary-blue-dark: #163A59;
  --background-white: #FFFFFF;
  --background-light: #F5F7FA;
  --success-green: #2E7D32;
  --accent-orange: #E65100;
  --error-red: #C62828;
  --text-dark: #263238;
  --text-light: #607D8B;
  --border-light: #E0E6ED;
  --page-width: 640px;
  --content-width: 900px;
  --layout-offset: 12rem;
  --layout-content-max: 520px;
  /* Nederlandse kentekenplaat */
  --plate-eu-blue: #2756c7;
  --plate-yellow-top: #F8B505;
  --plate-yellow-bottom: #EBA603;
  --plate-border: #1a1a1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-white);
}

/* Toegankelijkheid: skip link */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.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;
}

/* Header: uitgelijnd met hero, logo opzelfde positie */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 96px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  padding-left: var(--layout-offset);
  padding-right: 1.5rem;
}

.site-header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.site-header a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.site-header .logo {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* Hero: H1, subtekst, invoer + knop (boven de vouw) */
.hero {
  padding: 2.5rem 1.5rem 2rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

/* Grote slider onder de header: volle breedte, afbeelding als achtergrond */
.hero--home {
  max-width: none;
  margin: 0;
  padding: 3rem 1.5rem 3.5rem;
  min-height: 380px;
  background-color: var(--background-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero--home .hero__inner {
  max-width: var(--layout-content-max);
  margin-left: var(--layout-offset);
  padding: 2rem 2.25rem 2.25rem;
  background: var(--background-white);
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Resultpagina:zelfde hero__inner (witte box), geen slider-achtergrond */
.hero--result {
  max-width: none;
  margin: 0;
  padding: 3rem 1.5rem 3.5rem;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero--result .hero__inner--card {
  max-width: var(--layout-content-max);
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2.25rem 2.25rem;
  background: var(--background-white);
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero--result h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.hero--result .subtitle {
  text-align: left;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.hero--result .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.hero--result .hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
}

.hero--result .hero-trust__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero--home h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.hero .subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.5;
}

.hero--home .subtitle {
  text-align: left;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dark);
}

/* Kentekenplaat: EU-strip + invoerveld */
.kenteken-form--plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Kentekenplaat: vorm en verhouding van echte Nederlandse plaat */
.kenteken-plate {
  display: flex;
  width: 100%;
  max-width: 440px;
  height: 88px;
  min-height: 88px;
  border: 3px solid var(--plate-border);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--plate-yellow-top), var(--plate-yellow-bottom));
}

/* Alleen-weergave plaat (niet bewerkbaar, niet klikbaar) */
.kenteken-plate--display {
  pointer-events: none;
  user-select: none;
  cursor: default;
}

.kenteken-plate--display .kenteken-display {
  position: static;
}


.kenteken-input-holder {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.kenteken-input-holder::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 11%;
  background-color: #2756c7;
  border-radius: 3px 0 0 3px;
  background-image: url(/upload/kentekencheck.png);
  background-size: 65% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.plate-input-area {
  flex: 1;
  background: linear-gradient(to bottom, var(--plate-yellow-top), var(--plate-yellow-bottom));
  display: flex;
  align-items: center;
  padding: 0 1.25rem 0 15%;
  min-width: 0;
  box-sizing: border-box;
}

.plate-input {
  width: 100%;
  height: 100%;
  min-height: 82px;
  border: none;
  background: transparent;
  font-family: "Kenteken", "Oswald", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #2f2c2c;
  text-transform: uppercase;
  text-align: center;
}

.plate-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.plate-input:focus,
.plate-input:focus-visible {
  outline: none;
}

/* Streepjes alleen visueel: overlay toont opmaak, input alleen letters/cijfers */
.kenteken-input-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kenteken-display {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-transform: uppercase;
  white-space: pre;
  overflow: hidden;
  min-width: 0;
}

.plate-input-area .kenteken-display {
  font-family: "Kenteken", "Oswald", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #2f2c2c;
}

.kenteken-caret {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: -1px;
  vertical-align: middle;
  background: currentColor;
  animation: kenteken-caret-blink 1s step-end infinite;
}

.kenteken-input-wrap:not(:focus-within) .kenteken-caret {
  visibility: hidden;
}

@keyframes kenteken-caret-blink {
  50% { opacity: 0; }
}

.kenteken-input-wrap .plate-input,
.kenteken-input-wrap input[name="kenteken"] {
  position: relative;
  z-index: 1;
  color: transparent !important;
  caret-color: transparent;
}

.kenteken-form__submit {
  height: 52px;
  padding: 0 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary-blue);
  border: none;
  cursor: pointer;
}

.kenteken-form__submit:hover {
  background: var(--primary-blue-dark);
}

.kenteken-form__submit:focus-visible {
  outline: 2px solid var(--text-dark);
  outline-offset: 2px;
}

/* Form zonder plaat (compact op subpagina's) */
.kenteken-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.kenteken-form .input-wrap {
  flex: 1;
  min-width: 180px;
}

.kenteken-form input[type="text"]:not(.plate-input) {
  width: 100%;
  height: 56px;
  padding: 0 1rem;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-light);
  background: var(--background-white);
  color: var(--text-dark);
}

.kenteken-form input[type="text"]:not(.plate-input)::placeholder {
  color: var(--text-light);
}

.kenteken-form input[type="text"]:not(.plate-input):focus {
  outline: none;
  border-color: var(--primary-blue);
  border-width: 2px;
  padding: 0 calc(1rem - 1px);
}

.kenteken-form input[type="text"]:not(.plate-input):focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 0;
}

.kenteken-form button:not(.kenteken-form__submit) {
  height: 56px;
  min-width: 120px;
  padding: 0 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary-blue);
  border: none;
  cursor: pointer;
}

.kenteken-form button:not(.kenteken-form__submit):hover {
  background: var(--primary-blue-dark);
}

.kenteken-form button:not(.kenteken-form__submit):focus-visible {
  outline: 2px solid var(--text-dark);
  outline-offset: 2px;
}

.hero-trust {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.05em;
}

.hero--home .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.hero--home .hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
}

.hero--home .hero-trust__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--primary-blue);
}


/* Homepage intro onder hero */
.home-intro {
  padding: 2.5rem 1.5rem 3rem;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-intro__inner {
  max-width: 100%;
}

.home-intro__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}

.home-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-features__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.home-features__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.home-features__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-features__item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.home-features__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Homepage: wat kun je opzoeken */
.home-wat {
  padding: 2rem 1.5rem 3rem;
  background: var(--background-light);
  border-top: 1px solid var(--border-light);
}

.home-wat__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-wat__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.home-wat__lead {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.home-wat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.home-wat__list li {
  padding: 0.5rem 1rem;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

/* Resultaatpagina: grijze achtergrond, witte kaart */
main:has(.result-card) {
  background-color: #F5F7FA;
  padding: 1.5rem 0 2.5rem;
}

.result-header,
.result-card {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.result-header {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.result-header h2 {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success-green);
}

.result-header .result-source {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.result-card .error h2 {
  color: var(--error-red);
}

.result-card .result-group-title {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary-blue);
  border-bottom: 1px solid var(--border-light);
}

/* Kaart met 5 kerngegevens: elk item een feature card met icoon en themakleur */
.result-highlights .result-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.result-highlights__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(31, 78, 121, 0.06);
  border: 1px solid rgba(31, 78, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.result-highlights__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.result-highlights__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.result-highlights__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.result-highlights__item .result-highlights__icon {
  background: #1f4e79;
  color: #fff;
  flex-shrink: 0;
}

.result-highlights__top-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-highlights__top-row .result-highlights__item--vehicle-name {
  flex: 1;
  min-width: 0;
}

.result-highlights__vehicle-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 1rem;
}

.result-highlights__vehicle-content .kenteken-plate {
  margin-top: auto;
  max-width: 230px;
  height: 52px;
  min-height: 52px;
}

.result-highlights__vehicle-content .kenteken-input-holder {
  height: 100%;
}

.result-highlights__vehicle-content .kenteken-plate .plate-input-area {
  justify-content: center;
  padding-left: 18%;
  padding-right: 0.75rem;
}

.result-highlights__vehicle-content .kenteken-plate .kenteken-display {
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  margin-left: 0.35rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}

.result-highlights__item--vehicle-name {
  background: #f9f9f9;
}

.result-highlights__item--vehicle-name .result-highlights__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.result-highlights__item--vehicle-name .result-highlights__value {
  color: #000;
  font-size: 1.25rem;
}

.result-highlights__item--vehicle-name .result-highlights__icon {
  background: #d0d0d0;
  color: #000;
}

.result-highlights__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.result-highlights__label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

.result-highlights__value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.result-grid {
  display: grid;
  gap: 0 1.5rem;
}

@media (min-width: 480px) {
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.result-item {
  margin: 0;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.45;
}

.result-grid .result-item:last-child,
.result-grid .result-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.result-item dt {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.result-item dd {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Echt onbekend: licht + cursief */
.result-item--onbekend dd {
  color: var(--text-light);
  font-weight: 500;
  font-style: italic;
}

/* Niet geregistreerd (RDW heeft geen waarde): licht, geen cursief */
.result-item--niet-geregistreerd dd {
  color: var(--text-light);
  font-weight: 500;
}

/* Niet van toepassing (n.v.t.): neutraal, geen “onbekend”-uitstraling */
.result-item--nvt dd {
  color: var(--text-light);
  font-weight: 500;
}

.result-footer.internal-links {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.result-footer.internal-links a {
  color: var(--primary-blue);
  text-decoration: none;
}

.result-footer.internal-links a:hover {
  color: var(--primary-blue-dark);
}

/* SEO-tekst sectie: max 900px, rustige tekst */
.content-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.content-wrap h2 {
  font-size: 1.3125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.content-wrap h2:first-of-type {
  margin-top: 1.5rem;
}

.content-wrap p {
  margin: 0 0 1rem;
  color: var(--text-dark);
  max-width: 70ch;
}

.content-wrap a {
  color: var(--primary-blue);
  text-decoration: none;
}

.content-wrap a:hover {
  color: var(--primary-blue-dark);
}

.content-wrap a:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Breadcrumb (visueel op contentpagina's) */
.breadcrumb {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-blue-dark);
}

.breadcrumb a:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.breadcrumb [aria-hidden="true"] {
  margin: 0 0.25rem;
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.faq-list li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-list strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.faq-list strong + br + * {
  margin-top: 0;
}

/* Algemene links */
a {
  color: var(--primary-blue);
  text-decoration: none;
}

a:hover {
  color: var(--primary-blue-dark);
}

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  background: var(--background-white);
}

.site-footer .footer-links {
  margin: 0 0 0.5rem;
}

.site-footer .footer-links a {
  color: var(--primary-blue);
}

.site-footer .footer-links a:not(:last-child)::after {
  content: " · ";
  margin: 0 0.15rem;
  color: var(--text-light);
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.site-footer .footer-font-license {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-light);
}

.site-footer .footer-font-license a {
  color: var(--primary-blue);
}

/* Hero home op tablet/mobiel: inner gecentreerd, geen witte rand */
@media (max-width: 768px) {
  .site-header {
    padding-left: 1.5rem;
  }

  .hero--home {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero--home .hero__inner {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 2rem);
    max-width: 520px;
  }

  .hero--result .hero__inner--card {
    width: calc(100% - 2rem);
  }

  .result-highlights__top-row {
    flex-direction: column;
  }

  .result-highlights .result-highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile: input en knop onder elkaar, grote touch targets */
@media (max-width: 480px) {
  .hero {
    padding: 1.75rem 1rem 1.5rem;
  }

  .hero--home {
    padding: 2rem 0 2.5rem;
  }

  .hero--home .hero__inner {
    width: calc(100% - 1.5rem);
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1.25rem;
  }

  .hero--result {
    padding: 2rem 1rem 2.5rem;
  }

  .hero--result .hero__inner--card {
    width: calc(100% - 1.5rem);
    padding: 1.5rem 1.25rem;
  }

  .hero--home h1 {
    font-size: 1.625rem;
  }

  .kenteken-plate {
    max-width: 100%;
    height: 76px;
    min-height: 76px;
  }

  .plate-input {
    font-size: 2.25rem;
    letter-spacing: 0.15em;
    min-height: 70px;
  }

  .plate-input-area .kenteken-display {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }

  .kenteken-form__submit {
    width: 100%;
  }

  .kenteken-form {
    flex-direction: column;
  }

  .kenteken-form .input-wrap {
    min-width: 100%;
  }

  .kenteken-form button:not(.kenteken-form__submit) {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .result-header,
  .result-card {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.25rem;
  }

  .result-highlights .result-highlights__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-footer.internal-links {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-item {
    padding: 0.5rem 0;
  }
}

/* Iets ruimer op grotere schermen */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero .subtitle {
    font-size: 1.125rem;
  }
}
