/* ══════════════════════════════════════════════════
   jobcrawl.at — Shared Styles
   Warm Orange / Pastel — karriere.at inspired
══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --o:     #f97316;
  --oh:    #ea6b06;
  --ol:    #fff7ed;
  --om:    #ffedd5;
  --p:     #fed7aa;
  --gb:    #ecfdf5;
  --gt:    #065f46;
  --gbd:   #a7f3d0;
  --rb:    rgba(239,68,68,.1);
  --rt:    #dc2626;
  --t:     #111827;
  --tm:    #374151;
  --mu:    #9ca3af;
  --b:     #e5e7eb;
  --bg:    #f9fafb;
  --w:     #ffffff;
  --r:     12px;
  --f:     'Plus Jakarta Sans', sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html,body {
  font-family: var(--f);
  background: var(--w);
  color: var(--t);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── Layout ── */
.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media(min-width:769px){ .wrapper { padding: 0 48px; } }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--w); border-bottom: 1px solid var(--b);
  padding: 0 20px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
@media(min-width:769px){ .site-header { padding: 0 48px; height: 62px; } }

.logo { font-size: 1.1rem; font-weight: 900; color: var(--t); letter-spacing: -.5px; text-decoration: none; }
.logo em { font-style: normal; color: var(--o); }
.logo span { color: var(--mu); }

.site-nav { display: flex; gap: 2px; align-items: center; }
.site-nav a {
  padding: 7px 12px; border-radius: 8px; text-decoration: none;
  font-size: .82rem; font-weight: 600; color: var(--tm); transition: all .15s;
}
.site-nav a:hover, .site-nav a.active { background: var(--ol); color: var(--o); }
@media(max-width:600px){ .site-nav .hide-mobile { display: none; } }

.btn-header {
  border: 1.5px solid var(--b); border-radius: 8px;
  padding: 6px 12px; font-size: .8rem; font-weight: 600;
  color: var(--t); text-decoration: none; transition: all .15s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.btn-header:hover { border-color: var(--o); color: var(--o); }
.btn-header-primary { background: var(--o); color: #fff; border-color: var(--o); }
.btn-header-primary:hover { background: var(--oh); color: #fff; }

/* ── Bottom Nav (Mobile only) ── */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--w); border-top: 1px solid var(--b);
  padding: 6px 0 calc(6px + var(--safe-bottom));
}
@media(max-width:768px){ .bottom-nav { display: flex; justify-content: space-around; align-items: center; } }
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 12px; cursor: pointer; color: var(--mu); transition: color .15s;
  text-decoration: none; background: none; border: none; font-family: var(--f);
}
.bn-item.active { color: var(--o); }
.bn-item svg { width: 22px; height: 22px; }
.bn-item span { font-size: .62rem; font-weight: 600; }

/* ── PWA Install Banner ── */
.pwa-banner {
  display: none; position: fixed; bottom: 76px; left: 16px; right: 16px; z-index: 200;
  background: var(--w); border: 1.5px solid var(--p); border-radius: 16px;
  padding: 14px 16px; box-shadow: 0 8px 32px rgba(249,115,22,.2);
  flex-direction: row; align-items: center; gap: 12px;
}
.pwa-banner.show { display: flex; }
@media(min-width:769px){ .pwa-banner { bottom: 24px; max-width: 400px; left: 50%; transform: translateX(-50%); } }
.pwa-icon { width: 44px; height: 44px; background: var(--o); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.pwa-text h4 { font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.pwa-text p { font-size: .72rem; color: var(--mu); }
.pwa-actions { display: flex; gap: 6px; margin-left: auto; flex-shrink: 0; }
.pwa-install { background: var(--o); color: #fff; border: none; padding: 7px 12px; border-radius: 8px; font-family: var(--f); font-size: .78rem; font-weight: 700; cursor: pointer; }
.pwa-dismiss { background: none; border: none; color: var(--mu); font-size: 1.1rem; cursor: pointer; padding: 4px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 55%, #fed7aa 100%);
  padding: 40px 20px 50px; text-align: center; position: relative; overflow: hidden;
}
@media(min-width:769px){ .hero { padding: 64px 48px 72px; } }
.hero::before { content:''; position:absolute; top:-60px; left:-60px; width:200px; height:200px; background:radial-gradient(circle,#fed7aa,transparent 70%); opacity:.5; }
.hero::after  { content:''; position:absolute; bottom:-40px; right:-40px; width:180px; height:180px; background:radial-gradient(circle,#fdba74,transparent 70%); opacity:.4; }
.hero-inner { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3);
  color: var(--o); padding: 5px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .5px;
}
.hero h1 { font-size: 2rem; font-weight: 900; letter-spacing: -1px; line-height: 1.08; margin-bottom: 12px; }
.hero h1 em { font-style: normal; color: var(--o); }
.hero p { font-size: .9rem; color: var(--tm); margin-bottom: 28px; }
@media(min-width:769px){ .hero h1 { font-size: 3rem; letter-spacing: -1.5px; } .hero p { font-size: 1.05rem; } }

/* ── Search Box ── */
.hero-search {
  max-width: 700px; margin: 0 auto 20px;
  background: var(--w); border-radius: 14px;
  box-shadow: 0 8px 40px rgba(249,115,22,.18);
  padding: 6px; display: flex; flex-direction: column;
  border: 2px solid transparent; transition: border-color .2s;
}
.hero-search:focus-within { border-color: var(--o); }
@media(min-width:600px){ .hero-search { flex-direction: row; } }
.hs-field { display: flex; align-items: center; gap: 10px; flex: 1; padding: 10px 14px; }
.hs-field svg { color: var(--mu); flex-shrink: 0; width: 18px; height: 18px; }
.hs-field input { flex: 1; border: none; outline: none; font-family: var(--f); font-size: .9rem; color: var(--t); background: transparent; }
.hs-field input::placeholder { color: var(--mu); }
.hs-div { height: 1px; background: var(--b); margin: 0 14px; }
@media(min-width:600px){ .hs-div { height: auto; width: 1px; margin: 8px 0; } }
.hs-btn {
  background: var(--o); color: #fff; border: none; border-radius: 10px;
  padding: 12px; font-family: var(--f); font-size: .9rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 4px; transition: background .15s;
}
@media(min-width:600px){ .hs-btn { padding: 13px 24px; margin: 0; } }
.hs-btn:hover { background: var(--oh); }

.hero-chips { display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-chips .label { font-size: .78rem; color: var(--mu); }
.chip { background: var(--w); border: 1.5px solid var(--p); color: var(--tm); padding: 4px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; cursor: pointer; transition: all .15s; }
.chip:hover { border-color: var(--o); color: var(--o); background: var(--ol); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--w); border-bottom: 1px solid var(--b);
  padding: 16px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
@media(min-width:769px){ .stats-bar { padding: 20px 48px; display: flex; justify-content: center; gap: 60px; } }
.stat { text-align: center; padding: 0 8px; }
.stat:not(:last-child) { border-right: 1px solid var(--b); }
@media(min-width:769px){ .stat { border: none !important; } }
.stat .n { font-size: 1.3rem; font-weight: 900; color: var(--o); letter-spacing: -1px; }
@media(min-width:769px){ .stat .n { font-size: 1.6rem; } }
.stat .l { font-size: .62rem; color: var(--mu); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px; }

/* ── Compact Search (results page) ── */
.compact-search { background: var(--ol); border-bottom: 1px solid var(--p); padding: 12px 20px; }
@media(min-width:769px){ .compact-search { padding: 16px 48px; } }
.compact-search-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 10px; }
.cs-box { display: flex; background: var(--w); border: 2px solid var(--b); border-radius: 10px; overflow: hidden; flex: 1; transition: border-color .2s; }
.cs-box:focus-within { border-color: var(--o); }
.cs-field { display: flex; align-items: center; gap: 8px; flex: 1; padding: 0 12px; }
.cs-field svg { color: var(--mu); width: 16px; height: 16px; flex-shrink: 0; }
.cs-field input { flex: 1; border: none; outline: none; font-family: var(--f); font-size: .88rem; color: var(--t); background: transparent; padding: 10px 0; }
.cs-div { width: 1px; background: var(--b); }
.cs-btn { background: var(--o); color: #fff; border: none; padding: 0 16px; font-family: var(--f); font-size: .85rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.cs-btn:hover { background: var(--oh); }

/* ── Breadcrumb ── */
.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 10px 20px; font-size: .75rem; color: var(--mu); display: flex; gap: 6px; align-items: center; }
@media(min-width:769px){ .breadcrumb { padding: 12px 48px; } }
.breadcrumb a { color: var(--o); text-decoration: none; }

/* ── Results Layout ── */
.results-layout { max-width: 1200px; margin: 0 auto; padding: 0 20px 100px; }
@media(min-width:769px){ .results-layout { padding: 0 48px 80px; display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; } }

/* ── Filter Sidebar ── */
.filter-sidebar {}
.filter-mobile-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--b); margin-bottom: 16px; cursor: pointer; }
.filter-mobile-toggle h3 { font-size: .9rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.filter-mobile-toggle .toggle-label { font-size: .8rem; color: var(--o); font-weight: 600; }
@media(min-width:769px){ .filter-mobile-toggle { display: none; } }
.filter-body { display: none; }
.filter-body.open { display: block; }
@media(min-width:769px){ .filter-body { display: block; } }
.filter-header { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--mu); margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.filter-clear { color: var(--o); cursor: pointer; font-size: .75rem; font-weight: 600; }
.filter-section { margin-bottom: 22px; }
.filter-section h4 { font-size: .82rem; font-weight: 700; color: var(--t); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--b); }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; }
.filter-option input { accent-color: var(--o); width: 15px; height: 15px; cursor: pointer; }
.filter-option label { font-size: .82rem; color: var(--tm); cursor: pointer; flex: 1; }
.filter-option .count { font-size: .72rem; color: var(--mu); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip { padding: 5px 12px; border-radius: 20px; border: 1.5px solid var(--b); font-size: .75rem; font-weight: 600; color: var(--tm); cursor: pointer; transition: all .15s; }
.filter-chip:hover, .filter-chip.active { border-color: var(--o); color: var(--o); background: var(--ol); }

/* ── Results Main ── */
.results-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--b); }
.results-top h1 { font-size: 1rem; font-weight: 800; letter-spacing: -.3px; }
@media(min-width:769px){ .results-top h1 { font-size: 1.2rem; } }
.results-top .count { font-size: .78rem; color: var(--mu); margin-top: 2px; }
.results-sort select { border: 1.5px solid var(--b); border-radius: 8px; padding: 5px 10px; font-family: var(--f); font-size: .78rem; color: var(--t); outline: none; }

.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.active-filter { background: var(--o); color: #fff; padding: 3px 8px; border-radius: 20px; font-size: .72rem; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.active-filter .rm { opacity: .7; cursor: pointer; background: none; border: none; color: #fff; font-size: .75rem; }

/* ── Job Card ── */
.job-card {
  background: var(--w); border: 1.5px solid var(--b); border-radius: var(--r);
  padding: 14px; margin-bottom: 8px; transition: all .2s; cursor: pointer;
  display: flex; gap: 12px; position: relative; text-decoration: none; color: inherit;
}
.job-card:hover { border-color: var(--o); box-shadow: 0 4px 20px rgba(249,115,22,.1); transform: translateY(-1px); }
.job-card.pinned { border-color: var(--p); background: var(--ol); }
.job-card .pinned-label { position: absolute; top: 10px; right: 12px; font-size: .65rem; font-weight: 700; color: var(--o); text-transform: uppercase; letter-spacing: .5px; }
.job-logo { width: 44px; height: 44px; border-radius: 10px; background: var(--bg); border: 1px solid var(--b); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.job-card.pinned .job-logo { background: var(--om); border-color: var(--p); }
.job-body { flex: 1; min-width: 0; }
.job-badges { display: flex; gap: 4px; margin-bottom: 5px; flex-wrap: wrap; }
.badge { padding: 2px 7px; border-radius: 4px; font-size: .68rem; font-weight: 800; }
.badge-lead   { background: var(--o); color: #fff; }
.badge-new    { background: var(--gb); color: var(--gt); border: 1px solid var(--gbd); }
.badge-source { background: var(--bg); color: var(--mu); border: 1px solid var(--b); }
.badge-green  { background: var(--gb); color: var(--gt); }
.badge-red    { background: var(--rb); color: var(--rt); }
.job-title { font-size: .92rem; font-weight: 700; color: var(--t); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-company { font-size: .78rem; color: var(--o); font-weight: 600; margin-bottom: 8px; }
.job-meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.job-meta span { font-size: .73rem; color: var(--mu); }
.salary-tag { font-size: .72rem; font-weight: 700; color: var(--gt); background: var(--gb); padding: 2px 7px; border-radius: 4px; border: 1px solid var(--gbd); }
.job-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.save-btn { font-size: .8rem; color: var(--mu); cursor: pointer; transition: color .15s; background: none; border: none; font-family: var(--f); }
.save-btn:hover { color: var(--o); }
.job-date { font-size: .68rem; color: var(--mu); }

/* ── Categories ── */
.section-wrap { padding: 32px 20px 16px; max-width: 1200px; margin: 0 auto; }
@media(min-width:769px){ .section-wrap { padding: 48px 48px 16px; } }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.section-header h2 { font-size: 1.1rem; font-weight: 800; letter-spacing: -.3px; }
@media(min-width:769px){ .section-header h2 { font-size: 1.3rem; } }
.section-header a { font-size: .82rem; color: var(--o); font-weight: 600; text-decoration: none; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media(min-width:600px){ .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { background: var(--w); border: 1.5px solid var(--b); border-radius: var(--r); padding: 16px; cursor: pointer; transition: all .2s; }
.cat-card:hover { border-color: var(--o); background: var(--ol); transform: translateY(-2px); }
.cat-icon { font-size: 1.5rem; margin-bottom: 8px; }
.cat-card h3 { font-size: .85rem; font-weight: 700; margin-bottom: 3px; }
.cat-card span { font-size: .72rem; color: var(--mu); }

/* ── Featured Grid ── */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding-bottom: 80px; }
@media(min-width:600px){ .feat-grid { grid-template-columns: repeat(2, 1fr); padding-bottom: 40px; } }
.feat-card { background: var(--w); border: 1.5px solid var(--b); border-radius: var(--r); padding: 16px; cursor: pointer; transition: all .2s; display: flex; gap: 12px; text-decoration: none; color: inherit; }
.feat-card:hover { border-color: var(--o); box-shadow: 0 4px 20px rgba(249,115,22,.1); }
.feat-logo { width: 44px; height: 44px; border-radius: 10px; background: var(--bg); border: 1px solid var(--b); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

/* ── CTA Banner ── */
.cta-wrap { padding: 0 20px 24px; max-width: 1200px; margin: 0 auto; }
@media(min-width:769px){ .cta-wrap { padding: 0 48px 60px; } }
.cta-banner { background: linear-gradient(135deg, var(--o) 0%, #fb923c 100%); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 8px 40px rgba(249,115,22,.3); }
@media(min-width:600px){ .cta-banner { flex-direction: row; align-items: center; padding: 32px 40px; } }
.cta-banner h2 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: .85rem; }
.cta-btn { background: #fff; color: var(--o); border: none; padding: 12px 24px; border-radius: 10px; font-family: var(--f); font-size: .9rem; font-weight: 800; cursor: pointer; white-space: nowrap; align-self: flex-start; }
@media(min-width:600px){ .cta-btn { align-self: center; } }

/* ── Pagination ── */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.pg-btn { min-width: 36px; height: 36px; border: 1.5px solid var(--b); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .15s; color: var(--tm); background: var(--w); padding: 0 8px; text-decoration: none; }
.pg-btn:hover { border-color: var(--o); color: var(--o); }
.pg-btn.active { background: var(--o); color: #fff; border-color: var(--o); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: var(--r); font-family: var(--f); font-size: .85rem; font-weight: 700; cursor: pointer; border: none; text-decoration: none; transition: all .15s; letter-spacing: .3px; }
.btn-primary { background: var(--o); color: #000; }
.btn-primary:hover { background: var(--oh); }
.btn-secondary { background: var(--bg); color: var(--t); border: 1px solid var(--b); }
.btn-secondary:hover { border-color: var(--o); color: var(--o); }
.btn-danger { background: var(--rb); color: var(--rt); border: 1px solid rgba(220,38,38,.2); }
.btn-danger:hover { background: rgba(239,68,68,.2); }
.btn-sm { padding: 4px 10px; font-size: .78rem; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; color: var(--mu); margin-bottom: 6px; font-weight: 600; }
.form-control { width: 100%; background: var(--w); border: 1.5px solid var(--b); color: var(--t); padding: 10px 14px; border-radius: var(--r); font-family: var(--f); font-size: .9rem; transition: border-color .15s; outline: none; }
.form-control:focus { border-color: var(--o); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ── Cards ── */
.card { background: var(--w); border: 1.5px solid var(--b); border-radius: var(--r); overflow: hidden; margin-bottom: 16px; }
.card-header { padding: 14px 20px; border-bottom: 1px solid var(--b); font-weight: 700; font-size: .9rem; background: var(--bg); }
.card-body { padding: 20px; }

/* ── Table ── */
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
th { text-align: left; padding: 10px 14px; font-size: .72rem; text-transform: uppercase; letter-spacing: .6px; color: var(--mu); border-bottom: 1px solid var(--b); background: var(--bg); white-space: nowrap; }
td { padding: 12px 14px; border-bottom: 1px solid var(--b); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Alert ── */
.alert { padding: 12px 16px; border-radius: var(--r); margin-bottom: 16px; font-size: .88rem; }
.alert-success { background: var(--gb); border: 1px solid var(--gbd); color: var(--gt); }
.alert-error   { background: var(--rb); border: 1px solid rgba(220,38,38,.2); color: var(--rt); }

/* ── Admin Tabs ── */
.tab-bar { display: flex; gap: 2px; margin-bottom: 24px; border-bottom: 1px solid var(--b); padding-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab-bar a { padding: 10px 16px; text-decoration: none; color: var(--mu); font-weight: 700; font-size: .82rem; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .15s; letter-spacing: .3px; white-space: nowrap; }
.tab-bar a.active { color: var(--o); border-bottom-color: var(--o); }
.tab-bar a:hover { color: var(--t); }

/* ── Page Title ── */
.page-title { padding: 24px 0 20px; border-bottom: 1px solid var(--b); margin-bottom: 24px; }
.page-title h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px; }
@media(min-width:769px){ .page-title h1 { font-size: 2rem; } }
.page-title p { color: var(--mu); margin-top: 4px; font-size: .88rem; }

/* ── Stats Row ── */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
@media(min-width:600px){ .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--w); border: 1.5px solid var(--b); border-radius: var(--r); padding: 16px; }
.stat-card .num { font-size: 1.6rem; font-weight: 800; color: var(--o); letter-spacing: -1px; line-height: 1; }
@media(min-width:769px){ .stat-card .num { font-size: 2rem; } }
.stat-card .label { font-size: .7rem; color: var(--mu); text-transform: uppercase; letter-spacing: .8px; margin-top: 6px; }

/* ── CTA Bar ── */
.cta-bar {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-bar h2 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-bar p  { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.cta-btn {
  background: #fff; color: #f97316; border: none;
  padding: 12px 24px; border-radius: 10px; font-family: inherit;
  font-size: .95rem; font-weight: 800; cursor: pointer;
  white-space: nowrap; text-decoration: none; display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,.15); transition: transform .15s;
}
.cta-btn:hover { transform: translateY(-1px); }

/* ── Filter Radio ── */
.filter-radio-group { display: flex; flex-direction: column; gap: 4px; }
.filter-radio-opt {
  display: flex; align-items: center; gap: 8px; padding: 6px 0;
  cursor: pointer; font-size: .88rem; text-decoration: none; transition: color .15s;
}
.filter-radio-opt:hover { color: var(--o, #f97316); }
.filter-radio-opt.is-active { color: var(--o, #f97316); font-weight: 700; }
.filter-radio-dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid #d1d5db; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.filter-radio-opt.is-active .filter-radio-dot { border-color: #f97316; background: #f97316; }
.filter-radio-opt.is-active .filter-radio-dot::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}

/* ── CTA Bar Fix ── */
.cta-bar {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.cta-bar h2 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cta-bar p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ── FOOTER ── */
.site-footer {
  background: #111827;
  color: #9ca3af;
  margin-top: 60px;
  padding-bottom: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-style: normal;
}
.footer-logo em { color: #f97316; font-style: normal; }
.footer-logo span { color: #6b7280; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}
.footer-sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-sources span {
  background: #1f2937;
  color: #9ca3af;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: #4b5563;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 16px; }
}

/* ── FOOTER ── */
.site-footer {
  background: #111827;
  color: #9ca3af;
  margin-top: 60px;
  padding-bottom: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-style: normal;
}
.footer-logo em { color: #f97316; font-style: normal; }
.footer-logo span { color: #6b7280; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}
.footer-sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-sources span {
  background: #1f2937;
  color: #9ca3af;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: #4b5563;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 16px; }
}

/* ── FOOTER ── */
.site-footer {
  background: #111827;
  color: #9ca3af;
  margin-top: 60px;
  padding-bottom: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-style: normal;
}
.footer-logo em { color: #f97316; font-style: normal; }
.footer-logo span { color: #6b7280; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 16px;
}
.footer-sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-sources span {
  background: #1f2937;
  color: #9ca3af;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: #4b5563;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 16px; }
}
