/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:        #0b1c2c;
  --navy-mid:    #1d293d;
  --navy-light:  #19325b;
  --teal:        #6bcac9;
  --teal-dark:   #56b5b4;
  --teal-glow:   rgba(107,202,201,.18);
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --muted:       #6a7282;
  --muted-light: #90a1b9;
  --border:      #dee6ea;
  --border-dark: rgba(255,255,255,.08);
  --card-bg:     #ffffff;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 4px rgba(11,28,44,.06);
  --shadow:      0 4px 20px rgba(11,28,44,.08);
  --shadow-lg:   0 12px 48px rgba(11,28,44,.14);
  --shadow-xl:   0 24px 80px rgba(11,28,44,.2);
  --t:           .2s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--navy); line-height: 1.6; background: var(--white); }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -1px; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: .9rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout ──────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.section-label::before { content:''; display: block; width: 18px; height: 2px; background: var(--teal); border-radius: 2px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center > p { max-width: 560px; margin: .875rem auto 0; font-size: 1.05rem; }
.section-header > p { margin-top: .75rem; font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 50px;
  font-size: .875rem; font-weight: 600; font-family: inherit;
  cursor: pointer; border: none; transition: var(--t); white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--navy);
  box-shadow: 0 4px 20px var(--teal-glow);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--teal-glow); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-glow); }
.btn-lg { padding: .95rem 2rem; font-size: .95rem; }
.btn-sm { padding: .45rem 1rem; font-size: .78rem; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar { display: flex; align-items: center; height: 68px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .4rem; }
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.logo-text span { color: var(--teal); }
.logo-badge { font-size: .65rem; font-weight: 700; background: var(--teal); color: var(--navy); padding: .15rem .45rem; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: .125rem; margin-left: auto; }
.nav-item { position: relative; }
.nav-link { padding: .5rem .875rem; font-size: .875rem; font-weight: 500; color: var(--muted); border-radius: 50px; transition: var(--t); display: flex; align-items: center; gap: .3rem; }
.nav-link:hover { color: var(--navy); background: var(--off-white); }
.nav-link .fa-chevron-down { font-size: .6rem; transition: var(--t); }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + .75rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); min-width: 210px; padding: .5rem;
  opacity: 0; visibility: hidden; transition: var(--t);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: .75rem; padding: .65rem .875rem; font-size: .85rem; border-radius: var(--radius-sm); color: var(--muted); transition: var(--t); }
.dropdown li a:hover { background: var(--off-white); color: var(--navy); }
.dropdown li a i { width: 16px; color: var(--teal); font-size: .8rem; }
.nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 .5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 5.5rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero-glow-1 { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(107,202,201,.12) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(107,202,201,.06) 0%, transparent 70%); bottom: -100px; left: 10%; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: linear-gradient(rgba(107,202,201,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(107,202,201,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(107,202,201,.12); border: 1px solid rgba(107,202,201,.25);
  border-radius: 50px; padding: .35rem 1rem .35rem .5rem;
  font-size: .75rem; font-weight: 600; color: var(--teal);
  margin-bottom: 1.75rem; width: fit-content;
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { color: rgba(255,255,255,.55); font-size: 1.1rem; margin-bottom: 2.25rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.hero-stat strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; }

/* Search card */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
}
.hero-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 1.5rem; }
.search-field-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: .4rem; display: block; }
.search-field-input {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06);
  color: var(--white); font-family: inherit; font-size: .875rem; transition: var(--t);
  margin-bottom: 1rem;
}
.search-field-input::placeholder { color: rgba(255,255,255,.25); }
.search-field-input:focus { outline: none; border-color: rgba(107,202,201,.5); background: rgba(255,255,255,.1); }
.search-field-input option { background: var(--navy-mid); }
.hero-tags { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.08); }
.hero-tags p { font-size: .7rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .625rem; }
.hero-tags-list { display: flex; flex-wrap: wrap; gap: .375rem; }
.hero-tag { font-size: .75rem; padding: .3rem .75rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; color: rgba(255,255,255,.55); transition: var(--t); }
.hero-tag:hover { background: var(--teal-glow); border-color: rgba(107,202,201,.3); color: var(--teal); }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero { background: var(--navy); padding: 4rem 0 3.5rem; position: relative; overflow: hidden; }
.page-hero::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(107,202,201,.1) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.5); font-size: 1.05rem; margin-top: .75rem; }
.page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.3); }
.page-hero .breadcrumb a:hover { color: var(--teal); }
.page-hero .breadcrumb span { margin: 0 .4rem; }
.page-hero .section-label { color: var(--teal); }
.page-hero .section-label::before { background: var(--teal); }

/* ── Vacatures page header ───────────────────────────────── */
.vac-header { background: var(--navy); padding: 3rem 0 2.5rem; position: relative; overflow: hidden; }
.vac-header::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(107,202,201,.1) 0%, transparent 60%); }
.vac-header .container { position: relative; z-index: 1; }
.vac-header .breadcrumb { margin-bottom: 1rem; }
.vac-header .breadcrumb a, .vac-header .breadcrumb span { color: rgba(255,255,255,.4); }
.vac-header .breadcrumb a:hover { color: var(--teal); }
.vac-header-title { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.75px; margin-bottom: .5rem; }
.vac-header-sub { color: rgba(255,255,255,.45); font-size: .95rem; margin: 0; }

/* ── Vacatures listing ───────────────────────────────────── */
.vacatures-page { padding: 2.5rem 0 5rem; background: var(--off-white); }
.vacatures-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }

/* Search box */
.search-box { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 1.25rem 1.5rem; margin-bottom: 1.75rem; box-shadow: var(--shadow-sm); }
.search-box-inner { display: flex; gap: 1rem; align-items: center; }
.search-field { flex: 1; position: relative; }
.search-field [data-lucide] { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); color: var(--muted-light); width: 16px; height: 16px; pointer-events: none; }
.search-field input { width: 100%; padding: .75rem 1rem .75rem 2.625rem; border: 1.5px solid var(--border); border-radius: 50px; font-size: .875rem; font-family: inherit; color: var(--navy); transition: var(--t); background: var(--off-white); }
.search-field input:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px var(--teal-glow); }
.search-box .btn { flex-shrink: 0; }

/* Filters panel */
.filters-panel { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; position: sticky; top: 88px; box-shadow: var(--shadow-sm); }
.filters-top { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.filters-top h3 { font-size: .85rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: .45rem; }
.filters-top h3 [data-lucide] { width: 14px; height: 14px; color: var(--teal); }
.filter-reset { font-size: .75rem; color: var(--teal); font-weight: 600; transition: var(--t); }
.filter-reset:hover { color: var(--teal-dark); }
.filter-group { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,.05); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: .65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-light); margin-bottom: .75rem; font-weight: 700; }
.filter-option { display: flex; align-items: center; gap: .5rem; padding: .2rem 0; }
.filter-option input[type="radio"] { accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.filter-option label { font-size: .83rem; color: var(--muted); cursor: pointer; flex: 1; line-height: 1.4; }
.filter-option input[type="radio"]:checked + label { color: var(--navy); font-weight: 600; }
.filter-option .count { font-size: .7rem; color: var(--muted-light); background: var(--off-white); padding: .1rem .4rem; border-radius: 50px; flex-shrink: 0; }
.filters-submit { padding: 1.25rem; }

/* Results */
.results-count { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.results-count strong { color: var(--navy); font-weight: 700; }
.results-count em { color: var(--navy); font-style: normal; font-weight: 600; }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; background: var(--white); border-radius: var(--radius-xl); border: 1.5px solid var(--border); }
.empty-state [data-lucide] { width: 40px; height: 40px; color: var(--muted-light); margin: 0 auto 1.25rem; display: block; }
.empty-state h3 { color: var(--navy); margin-bottom: .5rem; }
.empty-state p { font-size: .9rem; }

/* Vacature card */
.vacature-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1rem; transition: var(--t);
  display: grid; grid-template-columns: 1fr 140px; gap: 1.5rem; align-items: start;
}
.vacature-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-top { display: flex; gap: 1rem; align-items: flex-start; }
.card-icon-wrap { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon-wrap [data-lucide] { width: 20px; height: 20px; }
.icon-it        { background: #e8f4f8; color: #0369a1; }
.icon-finance   { background: #f0fdf4; color: #16a34a; }
.icon-productie { background: #f3f0ff; color: #7c3aed; }
.icon-transport { background: #fff7ed; color: #c2410c; }
.icon-overig    { background: var(--off-white); color: var(--muted); }
.card-tags { display: flex; gap: .375rem; flex-wrap: wrap; margin-bottom: .5rem; }
.card-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .75px; padding: .2rem .55rem; border-radius: 50px; }
.tag-sector { background: rgba(107,202,201,.12); color: var(--teal-dark); }
.tag-type   { background: var(--off-white); color: var(--muted); border: 1px solid var(--border); }
.card-title { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .98rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: .5rem; transition: var(--t); }
.vacature-card:hover .card-title { color: var(--teal-dark); }
.card-desc { font-size: .82rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: .875rem; line-height: 1.6; }
.card-meta { display: flex; flex-wrap: wrap; gap: .375rem; }
.meta-pill { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--muted); background: var(--off-white); padding: .2rem .6rem; border-radius: 50px; border: 1px solid var(--border); }
.meta-pill [data-lucide] { width: 11px; height: 11px; color: var(--teal); }
.card-right { display: flex; flex-direction: column; align-items: flex-end; gap: .625rem; }
.card-salary { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 800; color: var(--navy); white-space: nowrap; text-align: right; }
.card-date { font-size: .7rem; color: var(--muted-light); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: .375rem; margin-top: 2.5rem; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50px; font-size: .85rem; font-weight: 500; border: 1.5px solid var(--border); color: var(--muted); transition: var(--t); }
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .active { background: var(--teal); color: var(--navy); border-color: var(--teal); font-weight: 700; }

/* ── Vacature detail ─────────────────────────────────────── */
.vacature-detail { padding: 2.5rem 0 5rem; background: var(--off-white); }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.75rem; align-items: start; }
.detail-main { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; }
.detail-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--navy); letter-spacing: -.75px; margin: .875rem 0 1.25rem; }
.detail-meta-row { display: flex; flex-wrap: wrap; gap: .5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.detail-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; color: var(--navy); margin: 2rem 0 .75rem; }
.detail-body p { margin-bottom: 1rem; }
.detail-body ul { margin: 0 0 1.25rem 0; }
.detail-body ul li { display: flex; align-items: flex-start; gap: .625rem; margin-bottom: .5rem; font-size: .92rem; color: var(--muted); }
.detail-body ul li::before { content:'→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

.sidebar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem; margin-bottom: 1.25rem; }
.sidebar-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.sidebar-title i { color: var(--teal); }
.info-rows { display: flex; flex-direction: column; gap: .875rem; }
.info-row { display: flex; gap: .875rem; }
.info-icon { width: 32px; height: 32px; background: rgba(107,202,201,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: .8rem; flex-shrink: 0; }
.info-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted-light); margin-bottom: .1rem; }
.info-val { font-size: .875rem; font-weight: 600; color: var(--navy); }

.apply-form label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .25px; color: var(--navy); margin-bottom: .35rem; }
.apply-form input, .apply-form textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: .875rem; color: var(--navy); background: var(--off-white); transition: var(--t); margin-bottom: .875rem; }
.apply-form input:focus, .apply-form textarea:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px var(--teal-glow); }
.apply-form textarea { height: 110px; resize: vertical; }

.sidebar-contact-card { background: var(--navy); border-radius: var(--radius-xl); padding: 1.75rem; border: 1px solid rgba(107,202,201,.15); }
.sidebar-contact-card h3 { color: var(--white); font-size: .95rem; margin-bottom: .5rem; }
.sidebar-contact-card p { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 1.25rem; }

/* ── Homepage sections ───────────────────────────────────── */
.jobs-section { background: var(--off-white); }
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.1rem; margin-bottom: 2.5rem; }
.job-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 1.5rem; transition: var(--t); display: block;
}
.job-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.job-card-top { display: flex; align-items: flex-start; gap: .875rem; margin-bottom: 1rem; }
.job-card-sector { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal-dark); margin-bottom: .2rem; }
.job-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.3; transition: var(--t); }
.job-card:hover .job-card-title { color: var(--teal-dark); }
.job-card-pills { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1rem; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; }
.job-salary { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .875rem; color: var(--navy); }
.job-apply { display: inline-flex; align-items: center; gap: .375rem; font-size: .75rem; font-weight: 700; color: var(--teal-dark); transition: var(--t); }
.job-card:hover .job-apply { gap: .625rem; }

/* Steps */
.steps-section { background: var(--navy); }
.steps-section .section-header h2 { color: var(--white); }
.steps-section .section-header p { color: rgba(255,255,255,.45); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps-grid::before { content:''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(107,202,201,.2); }
.step-card { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; position: relative; z-index: 1; background: rgba(107,202,201,.12); color: var(--teal); border: 1.5px solid rgba(107,202,201,.25); }
.step-card h3 { color: var(--white); font-size: .95rem; margin-bottom: .5rem; }
.step-card p { font-size: .85rem; color: rgba(255,255,255,.4); }

/* USPs */
.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.usp-card { padding: 2rem; background: var(--white); border-radius: var(--radius-xl); border: 1.5px solid var(--border); transition: var(--t); }
.usp-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.usp-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 1.25rem; background: rgba(107,202,201,.1); color: var(--teal-dark); }
.usp-card h3 { font-size: .95rem; margin-bottom: .5rem; }

/* CTA banner */
.cta-banner { background: var(--navy); position: relative; overflow: hidden; }
.cta-banner::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(107,202,201,.12) 0%, transparent 60%); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; padding: 5rem 0; }
.cta-inner h2 { color: var(--white); margin-bottom: .875rem; }
.cta-inner p { color: rgba(255,255,255,.5); font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: .875rem; white-space: nowrap; }

/* Content pages */
.content-block { padding: 5rem 0; }
.content-block.dark { background: var(--navy); }
.content-block.dark h2, .content-block.dark h3 { color: var(--white); }
.content-block.dark p { color: rgba(255,255,255,.5); }
.content-block.dark .section-label { color: var(--teal); }
.content-block.dark .section-label::before { background: var(--teal); }
.content-block.grey { background: var(--off-white); }
.content-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-grid-2.reverse { direction: rtl; }
.content-grid-2.reverse > * { direction: ltr; }
.content-visual { border-radius: var(--radius-xl); background: var(--navy); padding: 2.5rem; border: 1px solid rgba(107,202,201,.15); }
.visual-stat { margin-bottom: 1.5rem; }
.visual-stat:last-child { margin-bottom: 0; }
.visual-stat strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--teal); letter-spacing: -1.5px; line-height: 1; }
.visual-stat span { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: .25rem; display: block; }
.checklist { display: flex; flex-direction: column; gap: .625rem; margin-top: 1.25rem; }
.checklist-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--muted); }
.checklist-item i { color: var(--teal); font-size: .85rem; margin-top: .15rem; flex-shrink: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); transition: var(--t); }
.contact-card:hover { border-color: var(--teal); }
.contact-icon { width: 44px; height: 44px; background: rgba(107,202,201,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted-light); margin-bottom: .2rem; }
.contact-val { font-weight: 600; color: var(--navy); font-size: .9rem; }
.contact-val a:hover { color: var(--teal); }

/* Forms */
.form-card { background: var(--white); border-radius: var(--radius-xl); border: 1.5px solid var(--border); padding: 2.25rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .25px; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: .875rem; color: var(--navy); background: var(--off-white); transition: var(--t); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px var(--teal-glow); }
.form-group textarea { height: 140px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

/* Alerts */
.alert { padding: .875rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .875rem; display: flex; align-items: flex-start; gap: .625rem; }
.alert i { flex-shrink: 0; margin-top: .1rem; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* ── Admin ───────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); display: flex; flex-direction: column; }
.admin-logo { padding: 1.5rem; border-bottom: 1px solid var(--border-dark); }
.admin-logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.admin-logo-text span { color: var(--teal); }
.admin-logo-sub { font-size: .68rem; color: rgba(255,255,255,.25); margin-top: .2rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-nav { padding: .75rem 0; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: .75rem; padding: .7rem 1.5rem; font-size: .85rem; color: rgba(255,255,255,.5); transition: var(--t); }
.admin-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.admin-nav a.active { color: var(--teal); background: rgba(107,202,201,.08); border-right: 2px solid var(--teal); }
.admin-nav a i { width: 16px; }
.admin-main { background: var(--off-white); padding: 2rem; overflow-x: auto; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-topbar h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; color: var(--navy); letter-spacing: -.5px; }
.admin-table-wrap { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; }
.admin-table-wrap table { width: 100%; border-collapse: collapse; }
.admin-table-wrap th { padding: .875rem 1.25rem; text-align: left; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-light); background: var(--off-white); border-bottom: 1px solid var(--border); }
.admin-table-wrap td { padding: 1rem 1.25rem; font-size: .875rem; border-bottom: 1px solid rgba(0,0,0,.04); vertical-align: middle; }
.admin-table-wrap tr:last-child td { border-bottom: none; }
.admin-table-wrap tbody tr:hover td { background: var(--off-white); }
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .65rem; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-grey  { background: var(--off-white); color: var(--muted); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1.5px solid var(--border); }
.stat-card-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-card-label { font-size: .78rem; color: var(--muted); margin-top: .25rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-main { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.75fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; margin: 1.25rem 0 1.75rem; line-height: 1.75; }
.footer-social { display: flex; gap: .625rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .85rem; transition: var(--t); border: 1px solid rgba(255,255,255,.08); }
.footer-social a:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.footer-col h4 { color: rgba(255,255,255,.35); font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .875rem; transition: var(--t); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact li { display: flex; align-items: flex-start; gap: .625rem; color: rgba(255,255,255,.45); font-size: .875rem; margin-bottom: .625rem; }
.footer-contact li i { color: var(--teal); font-size: .8rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.45); }
.footer-contact li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom ul { display: flex; gap: 1.5rem; }
.footer-bottom ul a { font-size: .78rem; color: rgba(255,255,255,.25); transition: var(--t); }
.footer-bottom ul a:hover { color: rgba(255,255,255,.6); }

/* ── Lucide icons ────────────────────────────────────────── */
[data-lucide] { display: inline-block; vertical-align: middle; stroke-width: 1.75; flex-shrink: 0; }
.btn [data-lucide] { width: 15px; height: 15px; }
.nav-link [data-lucide] { width: 13px; height: 13px; opacity: .6; }
.meta-pill [data-lucide] { width: 12px; height: 12px; color: var(--teal); }
.card-tag [data-lucide], .hero-pill [data-lucide] { width: 12px; height: 12px; }
.usp-icon [data-lucide] { width: 22px; height: 22px; }
.step-num [data-lucide] { width: 20px; height: 20px; }
.contact-icon [data-lucide] { width: 20px; height: 20px; }
.info-icon [data-lucide] { width: 15px; height: 15px; }
.sidebar-title [data-lucide] { width: 16px; height: 16px; }
.footer-contact li [data-lucide] { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-social [data-lucide] { width: 15px; height: 15px; }
.admin-nav a [data-lucide] { width: 16px; height: 16px; }
.checklist-item [data-lucide] { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.alert [data-lucide] { width: 16px; height: 16px; }

/* ── Hero search fix ─────────────────────────────────────── */
.hero-search-field { margin-bottom: 1rem; }
.hero-search-field label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: .4rem; }
.hero-search-field input, .hero-search-field select { width: 100%; padding: .75rem 1rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.07); color: var(--white); font-family: inherit; font-size: .875rem; transition: var(--t); }
.hero-search-field input::placeholder { color: rgba(255,255,255,.25); }
.hero-search-field input:focus, .hero-search-field select:focus { outline: none; border-color: rgba(107,202,201,.5); background: rgba(255,255,255,.12); }
.hero-search-field select option { background: var(--navy-mid); color: var(--white); }
.hero-tag { font-size: .75rem; padding: .3rem .75rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; color: rgba(255,255,255,.55); transition: var(--t); display: inline-block; }
.hero-tag:hover { background: var(--teal-glow); border-color: rgba(107,202,201,.3); color: var(--teal); }

/* ── Compatibility variables ─────────────────────────────── */
:root {
  --blue:        var(--navy);
  --blue-mid:    var(--navy-mid);
  --grey-50:     var(--off-white);
  --grey-light:  var(--off-white);
  --grey:        var(--border);
  --grey-200:    var(--border);
  --grey-400:    var(--muted-light);
  --grey-mid:    var(--muted);
  --text-muted:  var(--muted);
  --orange:      var(--teal);
}

/* ── Content hero (inner pages) ──────────────────────────── */
.content-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.content-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(107,202,201,.1) 0%, transparent 60%);
}
.content-hero .container { position: relative; z-index: 1; }
.content-hero .section-label { color: var(--teal); }
.content-hero .section-label::before { background: var(--teal); }
.content-hero h1 { color: var(--white); }
.content-hero p { color: rgba(255,255,255,.55); font-size: 1.05rem; margin-top: .875rem; max-width: 620px; }
.content-hero .btn-ghost { margin-top: 0; }

/* ── USP icon wrapper ────────────────────────────────────── */
.usp-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(107,202,201,.1); color: var(--teal-dark);
}
.usp-icon-wrap [data-lucide] { width: 22px; height: 22px; }

/* ── CTA banner aliases ──────────────────────────────────── */
.cta-banner-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center; padding: 5rem 0;
}
.cta-banner-inner h2 { color: var(--white); margin-bottom: .875rem; }
.cta-banner-inner p { color: rgba(255,255,255,.5); font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-direction: column; gap: .875rem; white-space: nowrap; }

/* ── Content visual inner ────────────────────────────────── */
.content-visual-inner {
  background: rgba(107,202,201,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(107,202,201,.2);
}
.content-visual-inner .visual-stat strong { color: var(--teal); }
.content-visual-inner .visual-stat span { color: rgba(255,255,255,.4); }

/* ── Contact info cards ──────────────────────────────────── */
.contact-info-card {
  display: flex; gap: 1rem; padding: 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); transition: var(--t);
}
.contact-info-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(107,202,201,.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.contact-info-icon [data-lucide] { width: 20px; height: 20px; }
.contact-info-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted-light); margin-bottom: .2rem; }
.contact-info-val { font-weight: 600; color: var(--navy); font-size: .9rem; }
.contact-info-val a { color: var(--navy); }
.contact-info-val a:hover { color: var(--teal); }

/* ── Sidebar card title ──────────────────────────────────── */
.sidebar-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.sidebar-card-title [data-lucide] { width: 16px; height: 16px; color: var(--teal); }

/* ── Vacature detail extras ──────────────────────────────── */
.detail-header { margin-bottom: 1rem; }
.detail-sector {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--teal-dark); margin-bottom: .5rem;
}
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: var(--t); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--muted-light); }

/* ── Step card text: correct on light vs dark ────────────── */
.step-card h3 { color: var(--navy); font-size: .95rem; margin-bottom: .5rem; }
.step-card p  { font-size: .85rem; color: var(--muted); }
.steps-section .step-card h3 { color: var(--white); }
.steps-section .step-card p  { color: rgba(255,255,255,.4); }
.steps-section .section-header h2 { color: var(--white); }
.steps-section .section-header p  { color: rgba(255,255,255,.45); }

/* ── Admin compat classes ────────────────────────────────── */
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem; color: var(--navy); letter-spacing: -.5px; }
.admin-table { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: .875rem 1.25rem; text-align: left; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-light); background: var(--off-white); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 1rem 1.25rem; font-size: .875rem; border-bottom: 1px solid rgba(0,0,0,.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--off-white); }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.btn-outline-blue { background: transparent; color: var(--teal-dark); border: 1.5px solid var(--teal); border-radius: 50px; }
.btn-outline-blue:hover { background: var(--teal-glow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Nav chevron rotate on hover ─────────────────────────── */
.nav-item:hover .nav-link [data-lucide="chevron-down"] { transform: rotate(180deg); }

/* ── Layout-grids (voorheen inline, nu responsive) ───────── */
.aanmeld-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }
.grid-3-resp { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }

/* ── Mobiel vangnet: nooit horizontaal scrollen/uitzoomen ── */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aanmeld-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .vacatures-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .filters-sidebar { order: 2; }
  .detail-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* backdrop-filter op de header maakt 'position:fixed' relatief aan de header;
     op mobiel uitzetten zodat het volledige-scherm-menu écht het scherm vult */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--white); padding: 5rem 1.5rem 2rem; z-index: 99; gap: 0; overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; z-index: 100; position: relative; }
  .nav-link { padding: .875rem 0; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 1rem; color: var(--navy); }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: .25rem .875rem; border-radius: 0; }
  .nav-divider, .nav-cta .nav-divider { display: none; }
  .nav-cta { margin-top: 1rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .vacature-card { grid-template-columns: 1fr; }
  .card-right { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .search-box-inner { flex-direction: column; gap: .75rem; }
  .search-box-inner .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .footer-bottom ul { justify-content: center; }
  .cta-banner-inner { padding: 3rem 0; }
  .cta-banner-actions { flex-direction: column; }
  .content-hero p { font-size: .95rem; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .grid-3-resp { grid-template-columns: 1fr; }
}
