/* ============================================================
   SOEK WERK — app.css
   Mobile-first. Plain. High contrast. No frameworks.
   ============================================================ */

/* ------------------------------------------------------------
   Custom properties
   ------------------------------------------------------------ */
:root {
  --color-primary:       #1B5E20;
  --color-primary-dark:  #145218;
  --color-primary-light: #2E7D32;
  --color-accent:        #E65100;
  --color-accent-dark:   #BF360C;

  --color-text:          #1a1a1a;
  --color-text-muted:    #555555;
  --color-text-light:    #ffffff;

  --color-bg:            #ffffff;
  --color-bg-light:      #f4f6f4;
  --color-bg-dark:       #1B5E20;
  --color-border:        #d0d7d0;
  --color-border-light:  #e8ece8;

  --color-success:       #2E7D32;
  --color-error:         #c62828;
  --color-warning:       #E65100;
  --color-info:          #1565C0;

  --color-status-pending:  #7B6B00;
  --color-status-bg-pending: #FFF8DC;
  --color-status-approved: #1B5E20;
  --color-status-bg-approved: #E8F5E9;
  --color-status-rejected: #B71C1C;
  --color-status-bg-rejected: #FFEBEE;
  --color-status-closed:   #555555;
  --color-status-bg-closed: #F5F5F5;
  --color-status-filled:   #1565C0;
  --color-status-bg-filled: #E3F2FD;
  --color-status-draft:    #5D4037;
  --color-status-bg-draft: #EFEBE9;

  --font-base:   'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-size:   17px;
  --line-height: 1.6;

  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg:   0 4px 20px rgba(0,0,0,0.13);

  --space-xs:    0.25rem;
  --space-sm:    0.5rem;
  --space-md:    1rem;
  --space-lg:    1.5rem;
  --space-xl:    2rem;
  --space-2xl:   3rem;

  --container-max: 1100px;
  --container-narrow: 680px;

  --nav-height: 64px;
  --footer-height: 44px;
  --transition: 200ms ease;
}

/* ------------------------------------------------------------
   Reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: underline; }
a:hover { color: var(--color-primary-dark); }
ul, ol { padding-left: 1.4rem; }
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}
h1 { font-size: 1.75rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem; }
strong { font-weight: 600; }
code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  background: var(--color-bg-light);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
hr {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--space-xl) 0;
}
blockquote {
  border-left: 4px solid var(--color-border);
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  font-style: italic;
  background: var(--color-bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Band — the only zone where theme backgrounds are applied */
.hero-band {
  flex: 1;
  padding: var(--space-xl) 0 var(--space-2xl);
  position: relative;
}

.page-header {
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.page-header h1 { margin-bottom: 0; flex: 1; min-width: 0; }

.dashboard-header {
  margin-bottom: var(--space-lg);
}
.dashboard-header h1 { margin-bottom: var(--space-xs); }
.dashboard-header p { color: var(--color-text-muted); margin: 0; }

.dashboard-section {
  margin-top: var(--space-2xl);
}
.dashboard-section h2 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border-light);
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.section-divider { margin: var(--space-2xl) 0; }
.link-more {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Stacked on small screens */
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.site-header {
  background: var(--color-primary);
  color: var(--color-text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: var(--space-md);
}

.site-header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-header__logo:hover { color: rgba(255,255,255,0.85); }

/* Hamburger toggle — visible on mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: auto;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: var(--transition);
  transform-origin: center;
}
.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);
}

/* Nav menu */
.main-nav {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  padding: var(--space-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.main-nav.is-open { display: block; }

.main-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.main-nav__list li a,
.main-nav__list li .nav-logout {
  display: block;
  padding: 0.75rem var(--space-sm);
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background var(--transition);
}
.main-nav__list li a:hover,
.main-nav__list li .nav-logout:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

.nav-logout {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
  color: rgba(255,255,255,0.92);
}

.btn--nav {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff !important;
  border-radius: var(--radius);
}
.btn--nav:hover {
  background: rgba(255,255,255,0.25) !important;
}

.lang-switcher {
  padding: 0.75rem var(--space-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.lang-switcher a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.lang-switcher a:hover { color: #fff; }
.lang-active {
  color: #fff;
  font-weight: 700;
}

/* Desktop nav — side by side */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .main-nav {
    display: block;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    margin-left: auto;
  }

  .main-nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
  }

  .main-nav__list li a,
  .main-nav__list li .nav-logout {
    padding: 0.4rem 0.65rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .lang-switcher {
    padding: 0.4rem 0.65rem;
    border-left: 1px solid rgba(255,255,255,0.25);
    margin-left: var(--space-xs);
  }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.site-footer__brand strong {
  display: block;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.site-footer__brand p { margin: 0; }

.site-footer__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}
.site-footer__nav a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-footer__nav a:hover { color: var(--color-primary); text-decoration: underline; }

.site-footer__lang {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.site-footer__lang a { color: var(--color-text-muted); text-decoration: none; }
.site-footer__lang a:hover { color: var(--color-primary); }
.site-footer__lang strong { color: var(--color-primary); }

.site-footer__copy {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
  font-size: 0.85rem;
  color: #999;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------
   Flash messages
   ------------------------------------------------------------ */
.flash-messages {
  padding: var(--space-md) var(--space-md) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.flash {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  font-size: 0.97rem;
  font-weight: 500;
  border-left: 5px solid transparent;
}

.flash--success {
  background: #E8F5E9;
  color: #1B5E20;
  border-color: var(--color-success);
}
.flash--error {
  background: #FFEBEE;
  color: #B71C1C;
  border-color: var(--color-error);
}
.flash--info {
  background: #E3F2FD;
  color: #0D47A1;
  border-color: var(--color-info);
}
.flash--warning {
  background: #FFF3E0;
  color: #E65100;
  border-color: var(--color-warning);
}

/* ------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------ */
.breadcrumb {
  margin-bottom: var(--space-lg);
  font-size: 0.92rem;
}
.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   Part 2: Buttons, Forms, Cards, Tables, Badges, Notices
   ============================================================ */

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  font-size: 1rem;
  font-family: var(--font-base);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  -webkit-appearance: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

.btn--secondary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

.btn--danger {
  background: var(--color-error);
  color: #fff;
  border-color: var(--color-error);
}
.btn--danger:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  color: #fff;
  text-decoration: none;
}

.btn--success {
  background: var(--color-success);
  color: #fff;
  border-color: var(--color-success);
}
.btn--success:hover {
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn--full {
  display: block;
  width: 100%;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  padding: 0;
}
.btn-link:hover { color: var(--color-primary-dark); }

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group--error .form-input,
.form-group--error .form-select,
.form-group--error .form-textarea {
  border-color: var(--color-error);
  background: #fff8f8;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.97rem;
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem var(--space-md);
  font-size: 1rem;
  font-family: var(--font-base);
  line-height: 1.5;
  color: var(--color-text);
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27,94,32,0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-file {
  display: block;
  width: 100%;
  padding: 0.6rem 0;
  font-size: 0.97rem;
  color: var(--color-text);
  cursor: pointer;
}
.form-file:focus { outline: 2px solid var(--color-primary); border-radius: var(--radius); }

.field-hint {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.field-error {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-error);
  font-weight: 500;
}

.form-errors {
  background: #FFEBEE;
  border: 1px solid #ef9a9a;
  border-left: 4px solid var(--color-error);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.form-error {
  color: var(--color-error);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}
.form-error:last-child { margin-bottom: 0; }

.form-divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--space-xl) 0 var(--space-lg);
}

.form-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.required { color: var(--color-error); margin-left: 2px; }
.optional { font-weight: 400; color: var(--color-text-muted); font-size: 0.85rem; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.97rem;
  line-height: 1.4;
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}
.radio-option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-weight: 600;
}
.radio-option input[type="radio"] { accent-color: var(--color-primary); }

.form-group--actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.form-group--actions .btn--full { flex: 1; min-width: 160px; }

/* ------------------------------------------------------------
   Auth card
   ------------------------------------------------------------ */
.auth-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.auth-card__heading {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}
.auth-card__sub {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
.auth-card__links {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.92rem;
}
.auth-card__footer {
  border-top: 1px solid var(--color-border-light);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.95rem;
}

.register-choice {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.register-choice__card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.register-choice__card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  background: var(--color-bg-light);
  text-decoration: none;
  color: var(--color-text);
}
.register-choice__icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}
.register-choice__card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.register-choice__card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 540px) {
  .register-choice { flex-direction: row; }
  .register-choice__card { flex: 1; }
}

/* ------------------------------------------------------------
   Status badges
   ------------------------------------------------------------ */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-badge--pending  { background: var(--color-status-bg-pending);  color: var(--color-status-pending); }
.status-badge--approved { background: var(--color-status-bg-approved); color: var(--color-status-approved); }
.status-badge--rejected { background: var(--color-status-bg-rejected); color: var(--color-status-rejected); }
.status-badge--closed   { background: var(--color-status-bg-closed);   color: var(--color-status-closed); }
.status-badge--filled   { background: var(--color-status-bg-filled);   color: var(--color-status-filled); }
.status-badge--draft    { background: var(--color-status-bg-draft);    color: var(--color-status-draft); }
.status-badge--viewed   { background: #E3F2FD; color: #1565C0; }
.status-badge--shortlisted { background: #E8F5E9; color: #1B5E20; }
.status-badge--declined { background: #FFEBEE; color: #B71C1C; }

.badge {
  display: inline-block;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   Job type badges
   ------------------------------------------------------------ */
.job-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-type--dringend { background: #FFEBEE; color: #B71C1C; }
.job-type--voltyd   { background: #E8F5E9; color: #1B5E20; }
.job-type--deeltyd  { background: #E3F2FD; color: #1565C0; }
.job-type--kontrak  { background: #FFF3E0; color: #E65100; }
.job-type--tydelik  { background: #F3E5F5; color: #6A1B9A; }

/* ------------------------------------------------------------
   Notices / Alerts
   ------------------------------------------------------------ */
.notice {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
  font-size: 0.97rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  border-left: 4px solid transparent;
}
.notice--info    { background: #E3F2FD; color: #0D47A1; border-color: var(--color-info); }
.notice--warning { background: #FFF3E0; color: #E65100; border-color: var(--color-warning); }
.notice--success { background: #E8F5E9; color: #1B5E20; border-color: var(--color-success); }
.notice--error   { background: #FFEBEE; color: #B71C1C; border-color: var(--color-error); }

/* ------------------------------------------------------------
   Tables
   ------------------------------------------------------------ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.data-table th,
.data-table td {
  padding: 0.75rem var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}
.data-table th {
  background: var(--color-bg-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: #fafcfa; }
.table-actions {
  white-space: nowrap;
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   Stat cards
   ------------------------------------------------------------ */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card--alert {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
}
.stat-card__num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-card__label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.stat-card__link {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.stat-card__link:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   Job cards (browse listing)
   ------------------------------------------------------------ */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.job-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  align-items: center;
}

.job-card__category {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.job-card__title {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}
.job-card__title a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
}
.job-card__title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.job-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.job-card__company { font-weight: 600; color: var(--color-text); }

.job-card__salary {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
}

.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}
.job-card__date {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   Job detail layout
   ------------------------------------------------------------ */
.job-detail-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.job-detail__header {
  margin-bottom: var(--space-lg);
}
.job-detail__meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
.job-detail__title {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}
.job-detail__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: var(--space-md);
  background: var(--color-bg-light);
  border-radius: var(--radius);
}

.job-detail__salary {
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-lg);
  font-size: 0.97rem;
}
.job-detail__description {
  font-size: 1rem;
  line-height: 1.75;
}

/* Sidebar */
.apply-card {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.apply-card__closed {
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  padding: var(--space-md) 0;
}
.apply-card__done {
  text-align: center;
  color: var(--color-success);
  font-weight: 600;
  padding: var(--space-md) 0;
}
.apply-card__check { font-size: 1.5rem; margin-right: var(--space-xs); }
.apply-card__hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}
.apply-card__whatsapp {
  font-size: 0.95rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}
.apply-card__note {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  text-align: center;
  padding: var(--space-md) 0;
}

.report-card {
  margin-top: var(--space-md);
  text-align: center;
}
.report-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: underline;
}
.report-link:hover { color: var(--color-error); }

@media (min-width: 768px) {
  .job-detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .job-detail-main { flex: 1; min-width: 0; }
  .job-detail-sidebar { width: 280px; flex-shrink: 0; position: sticky; top: calc(var(--nav-height) + 1.5rem); }
}

/* ------------------------------------------------------------
   Action card (employer job detail sidebar)
   ------------------------------------------------------------ */
.action-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.action-card--admin {
  margin-top: var(--space-xl);
  max-width: 400px;
}

/* ------------------------------------------------------------
   Applicant cards
   ------------------------------------------------------------ */
.applicants-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.applicant-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
}
.applicant-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.applicant-card__name {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.applicant-card__name strong { font-size: 1.05rem; }
.applicant-card__location { font-size: 0.9rem; color: var(--color-text-muted); }
.applicant-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.applicant-card__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-light);
  border-radius: var(--radius);
}
.applicant-card__message { margin-bottom: var(--space-md); }
.applicant-card__message-label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}
.applicant-card__footer {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}
.no-cv { font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; }

/* ------------------------------------------------------------
   Detail meta block
   ------------------------------------------------------------ */
.detail-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-xl);
}
.detail-meta span strong { color: var(--color-text); }

/* ------------------------------------------------------------
   Content block (long text areas)
   ------------------------------------------------------------ */
.content-block {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}
.content-block h2 { margin-bottom: var(--space-md); }

/* ------------------------------------------------------------
   Filter bar
   ------------------------------------------------------------ */
.filter-bar {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.filter-bar--sm {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-sm);
}
.filter-bar--sm .form-select { width: auto; min-width: 160px; }

.filter-bar__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.filter-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.filter-field { display: flex; flex-direction: column; gap: var(--space-xs); flex: 1; min-width: 180px; }
.filter-label { font-weight: 600; font-size: 0.9rem; }

@media (min-width: 600px) {
  .filter-bar__fields { flex-direction: row; }
}

/* ------------------------------------------------------------
   Pagination
   ------------------------------------------------------------ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.pagination__btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
}
.pagination__btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}
.pagination__info {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   Empty state
   ------------------------------------------------------------ */
.empty-state {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}
.empty-state p { font-size: 1.05rem; margin-bottom: var(--space-lg); }

/* ------------------------------------------------------------
   Misc helpers
   ------------------------------------------------------------ */
.results-count {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.closed-tag {
  display: inline-block;
  font-size: 0.78rem;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  border-radius: 99px;
  padding: 0.1rem 0.5rem;
  border: 1px solid var(--color-border);
  margin-top: 2px;
}

.areas-list {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: var(--space-md);
}
.areas-note { font-size: 0.9rem; color: var(--color-text-muted); }

.step-list {
  list-style: none;
  padding: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.step-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.step-list li p { margin: var(--space-xs) 0 0; color: var(--color-text-muted); font-size: 0.95rem; }

.error-page {
  text-align: center;
  padding: var(--space-2xl);
}
.error-page h1 { font-size: 5rem; color: var(--color-border); margin-bottom: var(--space-md); }


/* ============================================================
   Part 3: Page-specific styles, Admin layout, Responsive
   ============================================================ */

/* ------------------------------------------------------------
   Landing page — Hero
   ------------------------------------------------------------ */
.hero {
  background: var(--color-primary);
  background-image: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #fff;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.hero__heading {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero__highlight {
  color: #A5D6A7;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.hero__ctas .btn {
  min-width: 220px;
}

.hero__browse {
  margin: 0;
}
.hero__browse a {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  text-decoration: underline;
}
.hero__browse a:hover { color: #fff; }

@media (min-width: 540px) {
  .hero { padding: 4rem 0; }
  .hero__heading { font-size: 2.6rem; }
  .hero__ctas { flex-direction: row; }
}
@media (min-width: 768px) {
  .hero__heading { font-size: 3rem; }
}

/* ------------------------------------------------------------
   Landing page — Sections
   ------------------------------------------------------------ */
.section {
  padding: var(--space-2xl) 0;
}
.section--light { background: var(--color-bg-light); }
.section--dark {
  background: var(--color-primary-dark);
  color: #fff;
}
.section--dark .trust-statement {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section__heading {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-text);
}
.section__heading--light { color: #fff; }

.section__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* How it works grid */
.how-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.how-divider {
  border: none;
  border-top: 1px solid var(--color-border);
}

.how-col__heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.how-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.how-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.how-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.how-list li strong { display: block; margin-bottom: 2px; font-size: 1rem; }
.how-list li p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.5; }

@media (min-width: 768px) {
  .how-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .how-col { flex: 1; padding: 0 var(--space-xl); }
  .how-divider {
    border-top: none;
    border-left: 1px solid var(--color-border);
    align-self: stretch;
    width: 1px;
  }
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-item strong { display: block; margin-bottom: 2px; }
.trust-item p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

@media (min-width: 600px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* How-it-works static page */
.how-it-works-page .how-col { padding: 0; }

/* ------------------------------------------------------------
   Admin layout — sidebar
   ------------------------------------------------------------ */

.no-scroll { overflow: hidden; }

/* Shell — true flex layout, no margin-left tricks */
.admin-body { background: #f0f2f5; }

.admin-shell {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.admin-sidebar {
  width: 250px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 0;
  height: 100vh;
  background: #1c1c1e;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 300;
  overflow-y: auto;
  transition: transform 0.25s ease;
}

/* Brand row */
.sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.sidebar-brand__link {
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.sidebar-brand__link:hover { color: rgba(255,255,255,0.8); text-decoration: none; }

.admin-badge {
  display: inline-block;
  background: var(--color-error);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 5px;
  vertical-align: middle;
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.sidebar-close:hover { color: #fff; }

/* Nav sections */
.sidebar-nav {
  flex: 1;
  padding: 0.75rem 0;
  overflow-y: auto;
}

.sidebar-section {
  padding: 0.5rem 0;
}
.sidebar-section + .sidebar-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sidebar-section__title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.35);
  padding: 0.4rem 1.25rem 0.25rem;
}

.sidebar-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link {
  display: block;
  padding: 0.5rem 1.25rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.sidebar-link:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  text-decoration: none;
}
.sidebar-link.is-active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
}
.sidebar-link.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary, #2d4a3e);
  border-radius: 0 2px 2px 0;
}

/* Danger section */
.sidebar-section--danger {
  border-top: 1px solid rgba(220,50,50,0.2) !important;
}
.sidebar-link--danger { color: rgba(255,120,120,0.75); }
.sidebar-link--danger:hover { background: rgba(220,50,50,0.12); color: #ff8888; }
.sidebar-link--danger.is-active { background: rgba(220,50,50,0.15); color: #ff9999; }

/* Footer */
.sidebar-footer {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sidebar-footer__link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.sidebar-footer__link:hover { color: rgba(255,255,255,0.75); text-decoration: none; }
.sidebar-footer__logout {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255,120,120,0.7);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.sidebar-footer__logout:hover { color: #ff8888; }

/* ── Main content ─────────────────────────────────────────── */
.admin-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Topbar — mobile only */
.admin-topbar {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  height: 52px;
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}
.admin-topbar__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hamburger */
.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* Overlay */
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s;
}
.admin-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Main */
.admin-main {
  flex: 1;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
  max-width: 1100px;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .admin-sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-100%);
  }
  .admin-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.35);
  }
  .sidebar-close  { display: block; }
  .admin-topbar   { display: flex; }
  .admin-main     { padding: var(--space-lg) var(--space-md) var(--space-2xl); }
}

.admin-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border-light);
}
.admin-page-header h1 { margin: 0; flex: 1; min-width: 0; font-size: 1.5rem; }

/* Admin review layout */
.review-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.review-content {
  flex: 1;
  min-width: 0;
}

.review-actions {
  width: 100%;
  max-width: 380px;
}
.review-actions form { margin-bottom: var(--space-md); }
.review-actions hr { margin: var(--space-lg) 0; }

@media (min-width: 768px) {
  .review-layout { flex-direction: row; align-items: flex-start; }
  .review-actions { flex-shrink: 0; position: sticky; top: 1.5rem; }
}

.job-description-preview {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  font-size: 0.97rem;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ------------------------------------------------------------
   Static pages
   ------------------------------------------------------------ */
.content-page .content-block {
  max-width: 700px;
}
.content-page ol, .content-page ul {
  margin-bottom: var(--space-lg);
}
.content-page p { margin-bottom: var(--space-md); }

/* ------------------------------------------------------------
   Responsive typography adjustments
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  :root { --font-size: 16px; }
  h1 { font-size: 1.5rem; }
  .hero__heading { font-size: 1.65rem; }
  .btn--lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
  .auth-card { padding: var(--space-lg) var(--space-md); }
}

@media (min-width: 1024px) {
  .hero-band { padding: var(--space-2xl) 0 4rem; }
  h1 { font-size: 2rem; }
}

/* ============================================================
   REDESIGN — Clean white header
   ============================================================ */

.site-header {
  background: #fff;
  color: var(--color-text);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .07);
  position: sticky;
  top: 0;
  z-index: 200;
  flex-shrink: 0;
}

.site-header__logo {
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.site-header__logo:hover { color: var(--color-primary-dark); }

.nav-toggle span { background: var(--color-text); }

/* Mobile: white dropdown */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: var(--space-sm) 0;
}

/* Left / right link groups */
.main-nav__left,
.main-nav__right {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main-nav__left li a,
.main-nav__right li a {
  display: block;
  padding: .7rem var(--space-md);
  color: var(--color-text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.main-nav__left li a:hover,
.main-nav__right li a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

/* Override btn--nav for white header */
.btn--nav {
  background: var(--color-primary);
  border: none;
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
}
.btn--nav:hover {
  background: var(--color-primary-dark) !important;
}

/* Logout button in white nav */
.nav-logout {
  color: var(--color-text);
  padding: .7rem var(--space-md);
  font-size: .95rem;
  text-align: left;
  width: 100%;
}
.nav-logout:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

/* Desktop: side-by-side with left/right split */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: var(--space-lg);
    background: none;
    border-top: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav__left,
  .main-nav__right {
    flex-direction: row;
    align-items: center;
    gap: .1rem;
  }

  .main-nav__left li a,
  .main-nav__right li a {
    padding: .35rem .7rem;
    border-radius: var(--radius);
  }

  .nav-logout {
    padding: .35rem .7rem;
    border-radius: var(--radius);
    width: auto;
  }

  .btn--nav {
    padding: .4rem 1rem;
    border-radius: var(--radius);
  }
}

/* ============================================================
   GLOBAL FOOTER — dark charcoal band, static across all themes
   ============================================================ */

.site-footer {
  height: var(--footer-height);
  background: #1a1a1a;
  border-top: none;
  padding: 0;
  margin-top: 0;
  flex-shrink: 0;
}

.site-footer__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-footer__copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .32);
  white-space: nowrap;
}

.site-footer__tagline {
  font-size: .76rem;
  color: rgba(255, 255, 255, .48);
  text-align: center;
  margin: 0;
  flex: 1;
  padding: 0 var(--space-md);
}
.site-footer__tagline em {
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}

.site-footer__lang {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.lang-active   { color: rgba(255,255,255,.88); font-weight: 700; text-decoration: none; }
.lang-inactive { color: rgba(255,255,255,.32); text-decoration: none; transition: color .15s; }
.lang-inactive:hover { color: rgba(255,255,255,.7); }
.lang-sep      { color: rgba(255,255,255,.18); font-weight: 400; }

/* ============================================================
   HOME PAGE — Full-screen no-scroll layout
   ============================================================ */

/* Hero band becomes the full viewport zone on hero pages */
body.page--home .hero-band,
body.page--select .hero-band {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: calc(100vh - var(--nav-height) - var(--footer-height));
  padding: var(--space-lg) var(--space-md);
}

/* ============================================================
   HOME HERO
   ============================================================ */

.home-hero {
  text-align: center;
  max-width: 580px;
  width: 100%;
}

.home-hero__eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.home-hero__heading {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}

.home-hero__heading em {
  font-style: normal;
  color: var(--color-primary);
}

.home-hero__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}

.home-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .home-hero__ctas {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .home-hero__ctas .btn { white-space: nowrap; }
}

.home-hero__browse {
  margin-top: var(--space-xl);
  font-size: .875rem;
}

.home-hero__browse a {
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.home-hero__browse a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}


/* ============================================================
   2026 REDESIGN — Inter typography + refined palette
   ============================================================ */

:root {
  --font-base:        'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Refined 2026 greens */
  --green-deep:       #0B2D1A;
  --green-mid:        #1A5C38;
  --green-hero-start: #0D3321;
  --green-hero-end:   #1E6B40;
}

body { font-family: var(--font-base); }

/* ============================================================
   NAV — version badge
   ============================================================ */

.nav-version {
  font-size: .65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: .04em;
  margin-left: .3rem;
  vertical-align: super;
  line-height: 1;
}

/* ============================================================
   BACKGROUND THEME — green (default)
   Scoped to .hero-band — header and footer are never touched
   ============================================================ */

body.bg--green.page--home .hero-band,
body.bg--green.page--select .hero-band {
  background: linear-gradient(150deg, var(--green-hero-start) 0%, var(--green-hero-end) 100%);
}

body.bg--green.page--home .hero-band::before,
body.bg--green.page--select .hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(255,255,255,.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,255,255,.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   HERO BLOCK — centered card
   ============================================================ */

.hero-block {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 540px;
  width: 100%;
}

.hero-block__eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-xl);
}

/* CTA group — stacked on mobile */
.hero-block__ctas {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  align-items: stretch;
}

@media (min-width: 500px) {
  .hero-block__ctas {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

/* ============================================================
   HERO BUTTONS
   ============================================================ */

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: .975rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
  line-height: 1.3;
}

/* Solid white */
.hero-btn--solid {
  background: #ffffff;
  color: var(--green-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.12);
}
.hero-btn--solid:hover {
  background: #f0faf4;
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.14);
}

/* Ghost / outline */
.hero-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.92);
  border: 1.5px solid rgba(255,255,255,.35);
}
.hero-btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

/* Browse link below CTAs */
.hero-block__browse {
  display: inline-block;
  margin-top: var(--space-2xl);
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .15s;
}
.hero-block__browse:hover {
  color: rgba(255,255,255,.7);
}

/* ============================================================
   FOOTER — slogan + meta row
   ============================================================ */

/* ============================================================
   PROGRESSIVE NARROWING — selection screens (page--select)
   ============================================================ */

/* Outer container for all selection/result screens */
.select-screen {
  width: 100%;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.select-screen--results {
  max-width: 760px;
}

/* Back link */
.select-screen__back {
  display: inline-block;
  color: rgba(255,255,255,.65);
  font-size: .825rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color .15s;
}
.select-screen__back:hover { color: #fff; }

/* Step indicator */
.select-screen__step {
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 .5rem;
}

/* Screen heading */
.select-screen__title {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .35rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.select-screen__subtitle {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.75rem;
}

.select-screen__header {
  margin-bottom: 1.75rem;
}

/* ─── Grid of option buttons ─────────────────────────────── */

.select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 480px) {
  .select-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 700px) {
  .select-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Individual ghost-style option button */
.select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem .875rem;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s, background .18s;
}

.select-btn:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  color: #fff;
}

.select-btn:active {
  transform: scale(.97);
  box-shadow: none;
}

/* Inline variant (used in empty-state CTA) */
.select-btn--inline {
  display: inline-flex;
  margin-top: 1.25rem;
}

/* Empty / no-results message */
.select-empty {
  color: rgba(255,255,255,.65);
  font-size: .925rem;
  padding: 1.5rem 0;
  text-align: center;
}

/* Browse-all link below province list */
.select-screen__browse {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .15s;
}
.select-screen__browse:hover { color: rgba(255,255,255,.7); }

/* ─── Filtered result cards ──────────────────────────────── */

.result-cards {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: .25rem;
}

.result-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 1.25rem 1.375rem;
  transition: background .18s, border-color .18s;
}

.result-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.result-card__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}

.result-card__type {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
}

.result-card__salary {
  font-size: .775rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

.result-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .2rem;
  line-height: 1.3;
}

.result-card__company {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 .65rem;
}

.result-card__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.result-card__actions {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
}

.result-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem 1.1rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .12s;
  cursor: pointer;
}

.result-card__btn--view {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.result-card__btn--view:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

.result-card__btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: 1.5px solid transparent;
}
.result-card__btn--whatsapp:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   SENTENCE-COMPLETION UI
   Home + province / town / category selection screens
   ============================================================ */



/* Centered wrapper — same structure as .hero-block */
.sentence-screen {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* "Ek ..." / "Ek bly in ..." — thin headline */
.sentence-prompt {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 100;
  color: rgba(255,255,255,.75);
  letter-spacing: -.015em;
  margin: 0 0 1.625rem;
  line-height: 1.1;
}

/* The trailing "..." — even more muted */
.sentence-ellipsis {
  color: rgba(255,255,255,.3);
}

/* Stack of full-width option buttons */
.sentence-opts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

/* Individual sentence-completion button */
.sentence-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.05rem 2rem;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: clamp(1.15rem, 3.5vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1.25;
  transition: border-color .18s, background .18s, transform .15s;
  cursor: pointer;
}

.sentence-opt:hover {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
  color: #fff;
}

.sentence-opt:active {
  transform: scale(.975);
}

/* "Blaai deur alle poste →" link */
.sentence-browse {
  display: inline-block;
  margin-top: 2.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .15s;
}
.sentence-browse:hover { color: rgba(255,255,255,.65); }

/* "← Terug" link */
.sentence-back {
  display: inline-block;
  margin-top: 1.875rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .15s;
}
.sentence-back:hover { color: rgba(255,255,255,.7); }

/* Empty state */
.sentence-empty {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0 0 1.5rem;
}

/* ============================================================
   ADMIN — management pages
   ============================================================ */

.admin-page-desc {
  color: var(--color-text-muted);
  font-size: .875rem;
  margin: -.5rem 0 1.5rem;
  max-width: 640px;
}

.admin-section-header {
  margin: 1.75rem 0 .6rem;
}
.admin-section-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Status pill */
.status-pill {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.status-pill--active {
  background: var(--color-status-bg-approved);
  color: var(--color-status-approved);
}
.status-pill--inactive {
  background: var(--color-status-bg-closed);
  color: var(--color-status-closed);
}

/* Dim inactive rows */
tr.row--inactive td {
  opacity: .5;
}

/* Danger button */
.btn--danger {
  background: var(--color-error);
  color: #fff;
  border: 1px solid var(--color-error);
}
.btn--danger:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  color: #fff;
}

/* Quick-link cards on dashboard */
.admin-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .875rem;
  margin-top: .75rem;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.25rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.quick-link-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.quick-link-card__icon { font-size: 1.5rem; margin-bottom: .4rem; }
.quick-link-card__label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .15rem;
}
.quick-link-card__sub {
  font-size: .75rem;
  color: var(--color-text-muted);
}

/* Demo page */
.demo-status-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.demo-status-card__count { font-size: 1.05rem; margin: 0 0 .3rem; }
.demo-status-card__detail { font-size: .85rem; color: var(--color-text-muted); margin: 0; }

.demo-data-info { margin-bottom: 1.75rem; }
.demo-data-info h2 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--color-text);
}

.demo-actions { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }

/* ============================================================
   BACKGROUND THEME — grid
   Scoped to .hero-band — header and footer are never touched
   ============================================================ */

body.bg--grid.page--home .hero-band,
body.bg--grid.page--select .hero-band {
  background: radial-gradient(ellipse at center, #1e3a8a 0%, #000000 100%);
}

body.bg--grid.page--home .hero-band::before,
body.bg--grid.page--select .hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* ============================================================
   BACKGROUND THEME — particles
   Scoped to .hero-band — header and footer are never touched
   ============================================================ */

body.bg--particles.page--home .hero-band,
body.bg--particles.page--select .hero-band {
  background: linear-gradient(135deg, #000814 0%, #003566 55%, #0077b6 100%);
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Keep text content above the canvas */
.hero-band > .sentence-screen,
.hero-band > .select-screen,
.hero-band > .hero-block {
  position: relative;
  z-index: 1;
}

/* ============================================================
   ADMIN — background style picker
   ============================================================ */

.bg-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 700px;
}

.bg-style-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
}
.bg-style-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.bg-style-card--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27,94,32,.18);
}

.bg-style-radio { display: none; }

.bg-style-preview {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bg-style-preview__label {
  font-size: 1.1rem;
  font-weight: 100;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

/* Green gradient preview */
.bg-style-preview--green {
  background: linear-gradient(150deg, #2E7D32 0%, #1B5E20 100%);
}
.bg-style-preview--green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 60%, rgba(255,255,255,.06) 0%, transparent 70%);
}

/* Grid background preview */
.bg-style-preview--grid {
  background: radial-gradient(ellipse at center, #1e3a8a 0%, #000000 100%);
}
.bg-style-preview--grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Particles preview — static dot pattern simulates the live animation */
.bg-style-preview--particles {
  background: linear-gradient(135deg, #000814 0%, #003566 55%, #0077b6 100%);
}
.bg-style-preview--particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,245,255,.55) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,217,255,.35) 1px,   transparent 1px);
  background-size: 28px 28px, 48px 48px;
  background-position: 0 0, 14px 14px;
}

.bg-style-card__meta {
  padding: .75rem 1rem;
  background: var(--color-bg);
}
.bg-style-card__name {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .2rem;
}
.bg-style-card__desc {
  display: block;
  font-size: .775rem;
  color: var(--color-text-muted);
}

/* ============================================================
   UI FIX ROUND 2
   ============================================================ */

/* Fix 1 — Topbar: dark brand green globally */
.site-header {
  background: #2d4a3e !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
}
.site-header__logo {
  color: #fff !important;
  text-decoration: none;
}
.site-header__logo:hover { color: rgba(255,255,255,0.85) !important; }
.nav-toggle span { background: #fff !important; }

/* Nav links on dark header */
.main-nav__left li a,
.main-nav__right li a,
.nav-logout {
  color: rgba(255,255,255,0.75) !important;
}
.main-nav__left li a:hover,
.main-nav__right li a:hover,
.nav-logout:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}
.btn--nav {
  background: rgba(255,255,255,0.15) !important;
  border: 0.5px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
  border-radius: 20px;
  padding: 5px 14px !important;
}
.btn--nav:hover {
  background: rgba(255,255,255,0.25) !important;
}
/* Mobile nav — keep on dark */
.main-nav {
  background: #2d4a3e !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
}

/* Fix 2 — Hero strip */
.hero-strip {
  background: #2d4a3e;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.hero-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.hero-pill {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Critical: override centered hero-band for discovery, make it a column fill */
body.page--select .hero-band {
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  overflow: hidden;
}

/* Fix 5 — Discovery panel container: fills remaining space, no max-width */
.discovery-panel-container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .discovery-panel-container { padding: 14px 40px; }
}
@media (max-width: 767px) {
  .discovery-panel-container { padding: 0; }
}

/* Override discovery-wrap: remove fixed calc height, use flex fill */
.discovery-wrap {
  flex: 1 !important;
  min-height: 0 !important;
  height: auto !important;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--surface-border, #e8e2d9);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Ensure each column fills height and scrolls internally */
.col {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.col-hdr {
  flex-shrink: 0;
  padding: 9px 13px 7px;
  border-bottom: 0.5px solid var(--surface-border, #e8e2d9);
  background: #fafaf9;
}
.col-lbl {
  font-size: 10px;
  font-weight: 500;
  color: #888780;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.col-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.col--results { flex: 1.6; }

/* Fix 4 — Row items with job counts */
.row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  cursor: pointer;
  border-bottom: 0.5px solid var(--surface-border, #e8e2d9);
  font-size: 13px;
  color: #2c2c2a;
  transition: background 0.12s;
  user-select: none;
}
.row-item:hover { background: #f5f3ef; }
.row-item.sel   { background: #eaf3de; color: #2d4a3e; font-weight: 600; }
.ri-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ri-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ri-count { font-size: 11px; color: #b4b2a9; }
.ri-arr   { font-size: 11px; color: #b4b2a9; }
.row-item.sel .ri-count,
.row-item.sel .ri-arr { color: rgba(45,74,62,0.45); }

/* Fix 3 — Disc cards (results column) */
.jobs-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jobs-summary {
  font-size: 11px;
  color: #888780;
  padding: 2px 2px 4px;
}
.col-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
.col-empty-hint {
  font-size: 12px;
  color: #aaa9a2;
  text-align: center;
  line-height: 1.6;
}

.disc-card {
  display: block;
  background: #fdfcfa;
  border: 0.5px solid #e8e2d9;
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
  color: #2c2c2a;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.disc-card:hover {
  border-color: #5DCAA5;
  box-shadow: 0 2px 8px rgba(93,202,165,0.15);
  text-decoration: none;
  color: #2c2c2a;
}
.disc-card--urgent { border-left: 3px solid #e85d3a; }
.disc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.disc-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}
.disc-card__meta {
  font-size: 11px;
  color: #888780;
}
.disc-badge {
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.disc-badge--urgent { background: #faece7; color: #c0391a; }

/* Mobile: stepper fills the panel */
@media (max-width: 767px) {
  .discovery-wrap { display: none !important; }
  .mobile-stepper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-lg) var(--space-md);
    align-items: center;
  }
}
@media (min-width: 768px) {
  .discovery-wrap { display: flex !important; }
  .mobile-stepper { display: none !important; }
}


/* ── Job detail slide-in panel ──────────────────────────────────────────── */

.job-panel {
  position: fixed;
  top: 0; right: 0;
  width: 500px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -6px 0 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.job-panel.open { transform: translateX(0); }

.job-panel-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 399;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s;
}
.job-panel-backdrop.open { opacity: 1; pointer-events: auto; }

.job-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky; top: 0;
  background: #fff; z-index: 1;
  flex-shrink: 0;
}
.job-panel__open-link {
  font-size: 0.83rem;
  color: #2d4a3e;
  text-decoration: none;
  font-weight: 500;
}
.job-panel__open-link:hover { text-decoration: underline; }

.job-panel__close {
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: #6b7280; padding: 2px 8px;
  border-radius: 4px; line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.job-panel__close:hover { background: #f3f4f6; color: #111827; }

.job-panel__body { padding: 28px 24px; flex: 1; }

.job-panel__loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; color: #9ca3af; font-size: 0.9rem;
}
.job-panel__err { padding: 24px; color: #9ca3af; font-size: 0.9rem; }

/* Override job-detail layout inside panel — single column, no breadcrumb */
.job-panel__body .container { padding: 0; max-width: none; }
.job-panel__body .breadcrumb { display: none; }
.job-panel__body .job-detail-layout { display: block; }
.job-panel__body .job-detail-sidebar { margin-top: 28px; }

/* Prevent body scroll when panel is open */
body.panel-open { overflow: hidden; }

/* Panel hidden entirely on mobile — let href navigate normally */
@media (max-width: 767px) {
  .job-panel,
  .job-panel-backdrop { display: none !important; }
}

/* ── Near-me button ─────────────────────────────────────────────────────── */

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

.near-me-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.near-me-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}
.near-me-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.near-me-msg {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 8px;
}
.near-me-msg--err {
  background: rgba(220,38,38,0.15);
  color: #fca5a5;
}

/* ── Slide-out panel — desktop right drawer / mobile bottom sheet ──────── */

.slideout-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.slideout-overlay.is-open { transform: translateX(0); }

.slideout-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 399;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.slideout-backdrop.is-open { opacity: 1; pointer-events: all; }

@media (max-width: 767px) {
  .slideout-overlay {
    top: auto; left: 0; right: 0;
    width: 100%; height: 88vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }
  .slideout-overlay.is-open { transform: translateY(0); }
}

/* Inner flex container — never overflows, only .so-body scrolls */
.slideout {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.so-loading, .so-err {
  display: flex; align-items: center; justify-content: center;
  height: 100%; color: #9ca3af; font-size: 0.9rem; padding: 24px;
}

/* Zone 1 — Header */
.so-header {
  background: #2d4a3e;
  padding: 14px 16px 12px;
  position: relative;
  flex-shrink: 0;
}

.so-close {
  position: absolute; top: 12px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.so-close:hover { background: rgba(255,255,255,0.25); }

.so-open-link {
  font-size: 10px; color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 10px;
}
.so-open-link:hover { color: rgba(255,255,255,0.75); }

.so-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }

.badge { font-size: 9px; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.badge-cat       { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }
.badge-voltyd    { background: #eaf3de; color: #27500a; }
.badge-deeltyd   { background: #e6f1fb; color: #0c447c; }
.badge-kontrakte { background: #faeeda; color: #854f0b; }
.badge-nuut      { background: rgba(93,202,165,0.3); color: #fff; }
.badge-dringend  { background: #faece7; color: #712b13; }

.so-title {
  font-size: 17px; font-weight: 500;
  color: #ffffff; line-height: 1.25; margin-bottom: 4px;
}
.so-company { font-size: 12px; color: rgba(255,255,255,0.55); }

/* Zone 2 — Facts strip */
.so-facts {
  display: flex;
  border-bottom: 0.5px solid #e8e2d9;
  flex-shrink: 0;
}
.so-fact {
  flex: 1; padding: 8px 4px;
  text-align: center;
  border-right: 0.5px solid #e8e2d9;
}
.so-fact:last-child { border-right: none; }
.so-fact-val { font-size: 12px; font-weight: 500; color: #2c2c2a; }
.so-fact-lbl {
  font-size: 9px; color: #b4b2a9; margin-top: 1px;
  text-transform: uppercase; letter-spacing: 0.4px;
}

/* Zone 3 — Salary strip */
.so-salary {
  display: flex; align-items: center;
  padding: 10px 16px;
  background: #eaf3de;
  border-bottom: 0.5px solid #d0ddc5;
  flex-shrink: 0;
}
.so-salary-label {
  font-size: 9px; color: #3b6d11; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.so-salary-amount { font-size: 15px; font-weight: 500; color: #27500a; margin-top: 2px; }

/* Zone 4 — Scrollable body */
.so-body {
  flex: 1; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.so-section-lbl {
  font-size: 9px; font-weight: 500; color: #b4b2a9;
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px;
}
.so-desc { font-size: 12px; color: #444441; line-height: 1.65; }

.so-contact-methods { display: flex; flex-direction: column; gap: 7px; }
.so-contact-chip {
  display: flex; align-items: center; gap: 10px;
  background: #f5f0e8; border-radius: 9px;
  padding: 9px 12px; text-decoration: none; cursor: pointer;
  transition: background 0.15s;
}
.so-contact-chip:hover { background: #eae5dc; }
.so-contact-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.so-contact-icon--wa { background: #25d366; }
.so-contact-icon--ph { background: #2d4a3e; }
.so-contact-icon--em { background: #378add; }
.so-contact-name   { font-size: 12px; font-weight: 500; color: #2c2c2a; }
.so-contact-detail { font-size: 10px; color: #888780; margin-top: 1px; }

.so-blur-row {
  background: #f0ede8; border-radius: 4px;
  height: 9px; margin-bottom: 5px;
}
.so-blur-row--short { width: 55%; }
.so-blur-hint { font-size: 10px; color: #b4b2a9; font-style: italic; margin-top: 4px; }

/* Zone 5 — Pinned footer */
.so-footer {
  flex-shrink: 0;
  border-top: 0.5px solid #e8e2d9;
  padding: 12px 16px;
  background: #ffffff;
  display: flex; flex-direction: column; gap: 7px;
}

.so-btn-primary {
  display: block; width: 100%; padding: 11px;
  background: #2d4a3e; color: #ffffff;
  border: none; border-radius: 9px;
  font-size: 13px; font-weight: 500;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background 0.18s;
}
.so-btn-primary:hover { background: #3d6b57; }

.so-btn-secondary {
  display: block; width: 100%; padding: 10px;
  background: transparent; color: #2d4a3e;
  border: 0.5px solid #2d4a3e; border-radius: 9px;
  font-size: 13px; font-weight: 500;
  text-align: center; text-decoration: none; cursor: pointer;
}

.so-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 11px;
  background: #25d366; color: #ffffff;
  border: none; border-radius: 9px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: background 0.18s;
}
.so-btn-wa:hover { background: #1ea952; }

.so-btn-row { display: flex; gap: 7px; }
.so-btn-icon {
  flex: 1; padding: 9px 6px;
  background: transparent;
  border: 0.5px solid #e8e2d9; border-radius: 9px;
  color: #888780; font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  white-space: nowrap; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.so-btn-icon:hover { border-color: #2d4a3e; color: #2d4a3e; }

.so-gate-note { font-size: 10px; color: #b4b2a9; text-align: center; }

/* ============================================================
   Social auth buttons — register_jobseeker screen
   ============================================================ */

.social-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.btn--social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, box-shadow 0.15s;
  min-height: 44px;
}
.btn--social:hover  { opacity: 0.9; text-decoration: none; }
.btn--social:active { opacity: 0.8; }

.btn--google {
  background: #fff;
  color: #3c4043;
  border-color: #dadce0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.btn--google:hover { box-shadow: 0 2px 6px rgba(0,0,0,0.14); color: #3c4043; }

.btn--facebook {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}
.btn--facebook:hover { color: #fff; }

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-muted, #888);
  font-size: 0.85rem;
  margin: 16px 0;
  gap: 10px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border, #ddd);
}

.oauth-error {
  font-size: 0.85rem;
  color: #c0392b;
  margin: 0 0 4px;
}

/* ============================================================
   MOBILE UNIFIED DESIGN — @media screen and (max-width: 480px)
   White card/pane inside dark-green frame — mirrors Desktop Dashboard.
   Desktop styles are never touched.
   ============================================================ */

/* --- Mobile-only elements: hidden on desktop --- */
.mobile-back-btn       { display: none; }
.mobile-near-me-icon   { display: none; }
.mobile-footer-nav     { display: none; }
.mobile-section-header { display: none; }
.mobile-prompt-row     { display: none; }
.mobile-lang-toggle    { display: none; }
.mobile-header-right   { display: none; }

/* --- Mobile footer nav item base styles --- */
.mobile-footer-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.15s;
  padding: 0 4px;
}
.mobile-footer-nav__item:hover { color: #fff; text-decoration: none; }
.mobile-footer-nav__item svg   { flex-shrink: 0; }

@media screen and (max-width: 480px) {

  /* ----------------------------------------------------------
     100dvh — stable viewport, address bar safe
     ---------------------------------------------------------- */
  html, body { height: 100dvh; overflow: hidden; }
  body { background: #2d4a3e; }

  /* ----------------------------------------------------------
     Fixed Header — dark green [← | Soek Werk | ☰]
     ---------------------------------------------------------- */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    height: 56px;
    padding: 0 6px;
    gap: 0;
  }

  .mobile-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header__logo {
    text-align: center;
    font-size: 1.05rem;
    justify-self: center;
  }

  .nav-version { font-size: 0.65rem; font-weight: 400; opacity: 0.6; }

  .nav-toggle {
    margin-left: 0;
    width: 44px; height: 44px;
    justify-self: end;
    justify-content: center;
    padding: 0;
  }
  .nav-toggle span { background: #fff; }

  .main-nav { top: 56px; }

  /* ----------------------------------------------------------
     White Content Pane — scrollable between fixed header/footer
     ---------------------------------------------------------- */
  .main-content {
    position: fixed;
    top: 56px; bottom: 60px; left: 0; right: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  /* Hero band: strip padding, let inner containers define spacing */
  /* !important needed — body.bg--green.page--* .hero-band (specificity 0,3,0) beats plain .hero-band */
  .hero-band {
    flex: 1;
    min-height: 0;
    padding: 0;
    background: transparent !important;
  }
  .hero-band::before,
  .hero-band::after { display: none !important; }
  #particles-js { display: none !important; }

  body.page--select .hero-band {
    padding: 0 !important;
    overflow: visible;
  }

  .discovery-panel-container { padding: 0 !important; overflow: visible; }

  /* Hide hero strip (desktop "Find your next job" + pill + near-me btn) */
  .hero-strip { display: none; }

  /* ----------------------------------------------------------
     Fixed Footer Navigation — dark green, 60px, 4 items
     ---------------------------------------------------------- */
  .mobile-footer-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    z-index: 200;
    background: #1B5E20;
    border-top: 1px solid rgba(255,255,255,0.12);
    align-items: stretch;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .site-footer { display: none; }

  /* ----------------------------------------------------------
     Mobile Stepper — full-width white list (mirrors Desktop columns)
     ---------------------------------------------------------- */
  .mobile-stepper {
    padding: 0 !important;
    align-items: stretch !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
  }

  /* Sentence screen: full-width left-aligned on selection pages */
  .sentence-screen {
    text-align: left;
    align-items: stretch;
    max-width: none;
    width: 100%;
  }

  /* Hide the large hero heading on selection pages — section label replaces it */
  body.page--select .sentence-prompt { display: none; }

  /* Home page: stay centered, use dark text on white */
  body.page--home .main-content { background: #f0ede8; }
  body.page--home .sentence-screen {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  /* Ellipsis inherits heading colour on every page (not just home) */
  .sentence-ellipsis { color: inherit; }

  /* ----------------------------------------------------------
     Section Header — mirrors Desktop col-hdr style exactly
     ---------------------------------------------------------- */
  .mobile-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px 6px;
    background: transparent;
    border-bottom: none;
    flex-shrink: 0;
  }

  /* "PROVINSIE" / "DORP" / "KATEGORIE" — matches .col-lbl exactly */
  .mobile-col-label {
    font-size: 10px;
    font-weight: 500;
    color: #888780;
    text-transform: uppercase;
    letter-spacing: 0.7px;
  }

  /* Near Me — solid dark-green icon circle */
  .mobile-near-me-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    min-height: 44px;
    background: #2d4a3e;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-near-me-icon:active { background: #3d6b57; }

  /* ----------------------------------------------------------
     Option List — row-item style (mirrors Desktop column rows)
     ---------------------------------------------------------- */
  .sentence-opts {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  /* Each option: matches .row-item style from Desktop */
  .sentence-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #2c2c2a;
    background: #fff;
    border: none;
    border-bottom: 0.5px solid #e8e2d9;
    border-radius: 0;
    min-height: 44px;
    text-align: left;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.4;
    transition: background 0.12s;
  }
  .sentence-opt:hover  { background: #f5f3ef; color: #2c2c2a; text-decoration: none; }
  .sentence-opt:active { background: #eaf3de; color: #2d4a3e; }

  /* Chevron arrow on right — matches .ri-arr */
  .sentence-opt::after {
    content: '›';
    color: #b4b2a9;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: 8px;
  }

  /* Selection pages: lift each row off the background — card feel, list efficiency */
  /* Warm grey tray — white cards pop against it (iOS/Android Settings pattern) */
  body.page--select .main-content { background: #f0ede8; }
  /* Grouped card — all rows share one container with inset dividers */
  body.page--select .sentence-opts {
    gap: 0;
    margin: 8px 12px;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    border: 0.5px solid #ddd;
    overflow: hidden;
  }

  body.page--select .sentence-opt {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    justify-content: flex-start !important;
  }

  /* Inset divider between rows (14px indent each side, using ::before) */
  body.page--select .sentence-opt + .sentence-opt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 0.5px;
    background: #eee;
  }

  /* Count pill badge — brand green, right-aligned before chevron */
  .sentence-opt__count {
    font-size: 11px;
    font-weight: 500;
    color: #eaf3de;
    background: #2d5a3d;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: auto;
    margin-right: 6px;
    flex-shrink: 0;
    line-height: 1.6;
  }

  /* Separator between province card and "Naby my" */
  .near-me-divider {
    height: 1px;
    background: rgba(0,0,0,0.12);
    margin: 10px 0;
  }

  /* "Naby my" pill button */
  .naby-my-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #2d5a3d;
    background: #d6ead9;
    border: 0.5px solid #a8cead;
    border-radius: 999px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .naby-my-btn:active { opacity: 0.8; }

  /* Home page options: card-style large CTA buttons (not row-items) */
  body.page--home .sentence-opts { gap: 8px; }
  body.page--home .sentence-opt {
    background: #fff;
    border: 0.5px solid #e8e2d9;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
  body.page--home .sentence-opt::after { display: none; }

  /* Back and browse links */
  .sentence-back {
    display: block;
    padding: 12px 16px;
    color: #888780;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.12s;
  }
  .sentence-back:hover { color: #2c2c2a; }

  .sentence-browse {
    display: inline-block;
    margin-top: 1rem;
    color: #2d4a3e;
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: center;
  }

  /* ----------------------------------------------------------
     Job Cards — match Desktop disc-card style (warm white, 8px radius)
     ---------------------------------------------------------- */
  .jcard {
    background: #fdfcfa;
    border: 0.5px solid #e8e2d9;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 0 16px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }
  .jcard:hover { border-color: #5DCAA5; }

  .result-cards { padding: 10px 0; }

  /* Select-screen result wrapper */
  .select-screen {
    max-width: none;
    width: 100%;
    padding: 16px;
  }
  .select-screen--results { max-width: none; }

  .select-screen__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2a;
  }

  /* Page header (browse/filter pages) */
  .page-header { padding: 16px 16px 8px; }
  .page-header h1 { font-size: 1.1rem; color: #2c2c2a; }
  .container { padding-left: 0; padding-right: 0; }

  /* ----------------------------------------------------------
     Touch Targets — min 44px for all interactive elements
     ---------------------------------------------------------- */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline-sm,
  .near-me-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn-sm {
    min-height: 44px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  /* ----------------------------------------------------------
     White-on-white fixes — all elements designed for dark-green
     backgrounds must be overridden to dark text on mobile
     ---------------------------------------------------------- */

  /* Results page (filtered_list): step label + title + subtitle */
  .select-screen__step     { color: #888780; }
  .select-screen__title    { color: #2c2c2a; font-size: 1.1rem; font-weight: 700; }
  .select-screen__subtitle { color: #5F5E5A; }

  /* Empty state (no provinces / towns / categories found) */
  .sentence-empty { color: #888780; font-size: 14px; }

  /* "← Terug" hover — was rgba white, now dark */
  .sentence-back:hover { color: #2c2c2a; }

  /* "Blaai deur alle poste" hover */
  .sentence-browse:hover { color: #145218; }

  /* ----------------------------------------------------------
     Job Detail Card — 16px side margins, 20px internal padding
     ---------------------------------------------------------- */
  .jcard { padding: 14px 20px; }

  /* ----------------------------------------------------------
     2-column grid for Categories
     ---------------------------------------------------------- */
  body.page--select .sentence-opts--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  body.page--select .sentence-opts--grid .sentence-opt {
    border-right: 0.5px solid #eee;
    border-bottom: 0.5px solid #eee;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 13px;
  }
  body.page--select .sentence-opts--grid .sentence-opt::after { display: none; }

  /* ----------------------------------------------------------
     Touch target for small buttons
     ---------------------------------------------------------- */
  .btn--sm { min-height: 44px; }

  /* ----------------------------------------------------------
     Job slideout panel — full screen on mobile
     ---------------------------------------------------------- */
  .job-panel {
    position: fixed;
    inset: 56px 0 60px 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .job-panel__body { padding: 16px 20px; }
}

/* =============================================================
   Registration wizard — .reg- prefix
   ============================================================= */

/* Hidden panel */
.reg-panel--hidden { display: none !important; }

/* ---- Desktop step indicator -------------------------------- */
.reg-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 28px;
}

.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.reg-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: #e8e8e6;
  color: #888780;
  transition: background 0.2s, color 0.2s;
}

.reg-step__label {
  font-size: 12px;
  color: #888780;
  white-space: nowrap;
  transition: color 0.2s;
}

.reg-step--active .reg-step__num {
  background: #1a6b1f;
  color: #fff;
}
.reg-step--active .reg-step__label { color: #1a6b1f; font-weight: 600; }

.reg-step--done .reg-step__num {
  background: #1a6b1f;
  color: #fff;
}
.reg-step--done .reg-step__label { color: #1a6b1f; }

.reg-step__connector {
  flex: 1;
  height: 2px;
  background: #e8e8e6;
  margin: 0 8px;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.reg-step__connector--done { background: #1a6b1f; }

/* ---- Mobile compact step label ----------------------------- */
.reg-step-mobile {
  display: none;
  font-size: 13px;
  color: #888780;
  margin: 0 0 20px;
  text-align: center;
}

/* ---- Back button ------------------------------------------- */
.reg-back {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: none;
  border: none;
  color: #888780;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}
.reg-back:hover { color: #2c2c2a; }

/* ---- Responsive -------------------------------------------- */
@media screen and (max-width: 639px) {
  .reg-steps { display: none; }
  .reg-step-mobile { display: block; }

  .reg-panel .form-input,
  .reg-panel .form-select,
  .reg-panel .btn {
    min-height: 48px;
  }
}

/* =============================================================
   Auth card — compact layout + consistent typography
   Scope: .auth-card only, no effect on other forms
   ============================================================= */

.auth-card .form-group         { margin-bottom: 14px; }
.auth-card .form-label         { font-weight: 500; font-size: 0.875rem; color: #555; }
.auth-card .form-input,
.auth-card .form-select        { padding: 0.6rem var(--space-md); font-size: 0.95rem; }
.auth-card .auth-card__heading { margin-bottom: var(--space-md); }

/* Reduce top margin of reg-steps to tighten card header */
.auth-card .reg-steps,
.auth-card .reg-step-mobile    { margin-bottom: 18px; }

/* Inline social buttons — icon + short provider name */
.social-auth                   { flex-direction: row; margin-bottom: 0; }
.social-auth .btn--social      { flex: 1; font-size: 0.875rem; padding: 0.55rem 0.5rem; gap: 7px; justify-content: center; }

/* =============================================================
   CV management — .cv- prefix  (werknemer profiel)
   ============================================================= */

.cv-section { margin-top: 32px; }

.cv-retention-notice {
  font-size: 0.82rem;
  color: #555;
  background: #f0f4f0;
  border-left: 3px solid #1a6b1f;
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 16px;
}

.cv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f9f9f8;
  border: 1px solid #e0e0de;
  border-radius: 8px;
  padding: 10px 14px;
}

.cv-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cv-item__label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cv-item__meta {
  font-size: 0.78rem;
  color: #888780;
}

.cv-item__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cv-empty, .cv-max-notice {
  font-size: 0.875rem;
  color: #888780;
  margin-bottom: 16px;
}

.cv-max-notice { color: #c0392b; }

.cv-upload-form {
  border: 1px dashed #c8c8c5;
  border-radius: 8px;
  padding: 16px;
  background: #fafaf9;
}

.cv-upload-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #2c2c2a;
}

/* =============================================================
   Apply modal — .apply- prefix  (job slideout panel)
   ============================================================= */

.apply-done-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  color: #1a6b1f;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.apply-done-date {
  font-weight: 400;
  font-size: 0.8rem;
  color: #555;
}

/* Modal overlay — positioned inside .job-panel */
.apply-modal {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 50;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.apply-modal.is-open {
  transform: translateY(0);
}

.apply-modal__inner {
  padding: 20px 18px 32px;
  flex: 1;
}

.apply-modal__close {
  float: right;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #888780;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.apply-modal__close:hover { color: #1a1a1a; }

.apply-modal__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.apply-modal__job {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 18px;
}

.apply-modal__error {
  background: #fff8f8;
  border: 1px solid #e57373;
  border-radius: 6px;
  padding: 10px 12px;
  color: #c62828;
  font-size: 0.875rem;
  margin-bottom: 14px;
}

.apply-modal__success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  padding: 14px;
  color: #1a6b1f;
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}

.apply-field { margin-bottom: 16px; }

.apply-field__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.apply-cv-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #e0e0de;
  border-radius: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.apply-cv-option:has(input:checked) {
  border-color: #1a6b1f;
  background: #f0f7f0;
}

.apply-cv-option input[type="radio"] { flex-shrink: 0; }

.apply-cv-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
}

.apply-cv-exp {
  font-size: 0.75rem;
  color: #888780;
}

.apply-no-cvs {
  font-size: 0.82rem;
  color: #888780;
  margin-bottom: 8px;
}

.apply-upload-area {
  padding: 12px;
  background: #f9f9f8;
  border: 1px dashed #c8c8c5;
  border-radius: 6px;
  margin-bottom: 14px;
}

.apply-save-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
  cursor: pointer;
}

.apply-label-row { margin-top: 8px; }

.apply-message {
  width: 100%;
  min-height: 72px;
  resize: vertical;
}

.apply-popi-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 16px;
  cursor: pointer;
  line-height: 1.45;
}

.apply-popi-label input { flex-shrink: 0; margin-top: 2px; }

.apply-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =============================================================
   Apply modal v0.1.2 — two-path CV selection redesign
   ============================================================= */

/* Remove default fieldset chrome */
.apply-cv-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 16px;
}

/* Flex layout inside saved CV radio cards */
.apply-cv-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

/* "Voeg nog 'n CV by" toggle button */
.apply-add-cv-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a6b1f;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.apply-add-cv-btn:hover { color: #145718; }

/* Container for the two-path cards — hidden until toggle clicked */
.apply-path-cards { margin-top: 8px; }
.apply-path-cards.is-hidden { display: none; }

/* Individual path card (Eenmalig / Stoor op profiel) */
.apply-path-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #e0e0de;
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.apply-path-card:has(input:checked) {
  border-color: #1a6b1f;
  background: #f0f7f0;
}
.apply-path-card input[type="radio"] {
  flex-shrink: 0;
  margin-top: 3px;
}

.apply-path-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.apply-path-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.apply-path-card__desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}

/* Content area revealed beneath a selected path card */
.apply-path-content {
  padding: 10px 12px 12px;
  background: #f9f9f8;
  border: 1px dashed #c8c8c5;
  border-radius: 0 0 8px 8px;
  margin-top: -6px;
  margin-bottom: 8px;
}

/* "Jou CV word outomaties verwyder..." confirmation line */
.apply-onetime-notice {
  font-size: 0.8rem;
  color: #555;
  margin: 8px 0 0;
  padding: 6px 10px;
  background: #fff8e1;
  border-left: 3px solid #f9a825;
  border-radius: 0 4px 4px 0;
  line-height: 1.45;
}

/* Label input group inside "Stoor op profiel" content */
.apply-label-group { margin-top: 10px; }
.apply-label-group .apply-field__label { margin-bottom: 4px; }

/* =============================================================
   Apply modal v0.1.3 — upload zone, file card, POPI card, divider
   ============================================================= */

/* --- Styled upload zone (replaces native file input) --- */

.apply-upload-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 14px 16px;
  border: 1.5px dashed var(--surface-border);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.apply-upload-zone:hover,
.apply-upload-zone.is-over {
  border-color: var(--brand-mid);
  background: var(--brand-light);
}

/* Visually hidden but accessible file input lives inside the label */
.apply-upload-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.apply-upload-zone__icon {
  color: var(--text-hint);
  display: block;
  margin-bottom: 2px;
}

.apply-upload-zone__main {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.apply-upload-zone__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- File card (shown after file is selected) --- */

.apply-file-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surface-white);
  border: 0.5px solid var(--surface-border);
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.apply-file-card__badge {
  background: var(--urgent-bg);
  color: var(--urgent-text);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.apply-file-card__name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.apply-file-card__size {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.apply-file-card__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-hint);
  padding: 0 0 0 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.12s;
}
.apply-file-card__remove:hover { color: var(--urgent-text); }

/* --- Muted one-time notice (replaces amber block) --- */

.apply-onetime-muted {
  font-size: 12px;
  color: var(--text-hint);
  margin: 6px 0 0;
  line-height: 1.4;
}

/* --- Section divider between CV fieldset and message --- */

.apply-section-divider {
  border: none;
  border-top: 0.5px solid var(--surface-border);
  margin: 4px 0;
}

/* --- POPI consent card --- */

.apply-popi-section {
  background: var(--surface-soft);
  border: 0.5px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}

.apply-popi-section__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.apply-popi-section .apply-popi-label:last-child { margin-bottom: 0; }
