/* ─── TalentBridge Design System ─────────────────────────────────────────── */

:root {
  --ink:       #0d1117;
  --ink-mid:   #3d4451;
  --ink-light: #6b7280;
  --bg:        #f8f7f4;
  --surface:   #ffffff;
  --border:    #e5e2dc;
  --accent:    #1a5c4a;
  --accent-lt: #e8f5f0;
  --accent-dk: #124035;
  --gold:      #c9933a;
  --danger:    #c0392b;
  --radius:    8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --font-head: 'Calibri', 'Trebuchet MS', Arial, sans-serif;
  --font-body: 'Calibri', Arial, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background .15s, color .15s;
}

.nav-link:hover {
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
}

.nav-cta:hover { background: var(--accent-dk); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .15s;
  text-decoration: none;
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-lt);
  text-decoration: none;
}

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

.btn-lg { padding: 14px 32px; font-size: 16px; font-weight: 600; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero graphic */
.hero-graphic {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hg-node {
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hg-n1 { top: 10%;  left: 20%;  animation-delay: 0s;    background: var(--accent-lt); color: var(--accent); }
.hg-n2 { top: 5%;   right: 10%; animation-delay: .6s; }
.hg-n3 { top: 40%;  left: 5%;   animation-delay: 1.2s; }
.hg-n4 { top: 40%;  right: 5%;  animation-delay: .3s; }
.hg-n5 { bottom: 15%; left: 25%; animation-delay: .9s; }
.hg-n6 { bottom: 10%; right: 15%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── How it works ───────────────────────────────────────────────────────── */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  text-align: center;
}

.how-it-works { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p { color: var(--ink-mid); font-size: 15px; }

/* ─── CTA band ────────────────────────────────────────────────────────────── */

.cta-band { background: var(--accent); }
.cta-band .section-inner { padding: 60px 24px; }
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.cta-inner .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-inner .btn-primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); }

/* ─── Search page ─────────────────────────────────────────────────────────── */

.search-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.search-header { margin-bottom: 36px; }
.search-header h1 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  color: var(--ink);
}
.search-header p { color: var(--ink-mid); font-size: 16px; }

.search-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.search-bar { display: flex; gap: 10px; margin-bottom: 16px; }
.search-input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,92,74,.1);
  background: var(--surface);
}

.search-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.filter-input {
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s;
}
.filter-input:focus { border-color: var(--accent); }

.remote-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-mid);
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: all .15s;
}
.remote-check input { accent-color: var(--accent); }

.results-meta {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.results-meta::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.results-meta strong { color: var(--ink); font-weight: 700; font-size: 16px; }
.results-meta em { color: var(--accent); font-style: italic; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #2d9e7e);
  opacity: 0;
  transition: opacity .25s;
}
.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(26,92,74,.2);
}
.result-card:hover::before { opacity: 1; }

.result-top { padding: 20px 24px 0; }

.result-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1.2;
}

/* Labeled detail rows */
.result-details {
  padding: 12px 24px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-detail-row {
  display: flex;
  gap: 16px;
}

.result-detail-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.detail-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-light);
}

/* Result card tags */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.tag-loc    { background: #f0f0ee; color: #555; }
.tag-remote { background: var(--accent-lt); color: var(--accent-dk); border: 1px solid rgba(26,92,74,.25); }
.tag-avail  { background: #fff8e8; color: #7a5000; border: 1px solid #f0d890; }
.tag-work   { background: #eef4ff; color: #2a4a8a; border: 1px solid #c8d8f8; }

.result-skills {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--border);
  flex: 1;
}

.skill-chip {
  background: var(--bg);
  border: 1px solid #e0ddd8;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: all .15s;
  line-height: 1;
}
.skill-chip:hover { background: var(--accent-lt); border-color: var(--accent); color: var(--accent); }
.skill-chip-more { color: var(--accent); border-color: var(--accent-lt); background: var(--accent-lt); font-weight: 600; }

.result-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: #fafaf8;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: gap .2s;
}
.linkedin-link::before {
  content: 'in';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #0077b5;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-head);
}
.linkedin-link:hover { gap: 12px; text-decoration: none; }

.no-results { text-align: center; padding: 80px 24px; color: var(--ink-mid); }
.no-results p { font-size: 16px; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.page-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  transition: all .15s;
  font-family: var(--font-body);
}
.page-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-lt); text-decoration: none; }
.page-info { font-size: 14px; color: var(--ink-light); font-weight: 500; }


/* ─── Skill Tag Input ─────────────────────────────────────────────────────── */

.skill-tagger {
  position: relative;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  cursor: text;
  min-height: 52px;
  align-items: center;
  transition: border-color .15s, box-shadow .15s;
}

.skill-tagger:focus-within .skill-tags {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,92,74,.1);
  background: var(--surface);
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px 5px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  animation: tagIn .15s ease;
}

@keyframes tagIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

.skill-tag-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color .1s;
}
.skill-tag-remove:hover { color: #fff; }

.skill-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  min-width: 220px;
  flex: 1;
  padding: 4px 2px;
}
.skill-search-input::placeholder { color: var(--ink-light); }

/* Dropdown */
.skill-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.skill-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background .1s;
  border-bottom: 1px solid var(--border);
}
.skill-option:last-child { border-bottom: none; }
.skill-option:hover,
.skill-option.active {
  background: var(--accent-lt);
}

.skill-option-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.skill-option-cat {
  font-size: 11px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

kbd {
  display: inline-block;
  background: #f0ede8;
  border: 1px solid #d0cdc8;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  font-family: monospace;
  color: var(--ink-mid);
}

/* ─── Profile submit form ──────────────────────────────────────────────────── */

.form-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.form-header { margin-bottom: 36px; }
.form-header h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.form-header p { color: var(--ink-mid); font-size: 16px; }

.profile-form { display: flex; flex-direction: column; gap: 32px; }

.form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.form-section legend {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 4px;
  margin-bottom: 20px;
}

.section-hint { font-size: 14px; color: var(--ink-light); margin-bottom: 20px; margin-top: -12px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field-row:last-child { margin-bottom: 0; }
.field-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.field input, .field select, .field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus { border-color: var(--accent); background: var(--surface); }

.field-hint { font-size: 12px; color: var(--ink-light); }

.req { color: var(--danger); }

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 8px;
}

.skill-category {}

.cat-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--accent-lt);
}

.skill-checks { display: flex; flex-direction: column; gap: 5px; }

.skill-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 5px;
  transition: background .1s;
  color: var(--ink-mid);
}
.skill-label:hover { background: var(--accent-lt); color: var(--accent); }
.skill-label input[type=checkbox] { accent-color: var(--accent); width: 14px; height: 14px; flex-shrink: 0; }
.skill-label input:checked + span { color: var(--ink); font-weight: 500; }

.mt-2 { margin-top: 20px; }
.mt-2 label { font-size: 13px; font-weight: 600; color: var(--ink-mid); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; display: block; }

/* Consent */
.form-section-consent { background: var(--accent-lt); border-color: var(--accent); }
.consent-block { display: flex; align-items: flex-start; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: var(--accent-dk);
}
.consent-label input { flex-shrink: 0; margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }
.consent-label a { color: var(--accent); font-weight: 600; }

.form-submit { display: flex; justify-content: flex-end; }

/* ─── Alerts ──────────────────────────────────────────────────────────────── */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.alert-error { background: #fdf2f2; border: 1px solid #f5c6c6; color: #8b1c1c; }
.alert-success { background: var(--accent-lt); border: 1px solid var(--accent); color: var(--accent-dk); }
.alert ul { margin: 6px 0 0 18px; }

/* ─── Simple pages (success, confirm, remove) ─────────────────────────────── */

.simple-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.simple-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.error-icon {
  width: 56px;
  height: 56px;
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.simple-card h1 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.simple-card p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hint { font-size: 13px; color: var(--ink-light); }

.card-actions { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }

.simple-form { text-align: left; margin-top: 24px; }
.simple-form .field { margin-bottom: 16px; }
.simple-form button { width: 100%; justify-content: center; margin-top: 8px; }


/* ─── Legal pages (privacy, terms) ───────────────────────────────────────── */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.legal-header h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--ink-light);
  font-size: 14px;
}

.legal-body {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}

.legal-body p {
  margin-bottom: 16px;
}

.legal-body h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.legal-body ul li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-body strong {
  font-weight: 700;
  color: var(--ink);
}


/* ─── Cookie Consent Banner ───────────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transition: transform .35s ease, opacity .35s ease;
}

.cookie-banner-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.cookie-banner-text p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text a {
  color: #7ddfc3;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all .15s;
  white-space: nowrap;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.25);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--accent-dk);
}

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner-actions { justify-content: flex-end; }
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 32px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-links a:hover { color: #fff; }

.footer-copy { font-size: 12px; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .results-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .simple-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .skills-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link:not(.nav-cta) { display: none; }
}
