/* ── Shared styles — NIjobsearch ── */

:root {
  --primary: #0f172a;
  --primary-mid: #1e3a5f;
  --accent: #0d9488;
  --accent-hover: #0b7a6e;
  --accent-light: #ccfbf1;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --light: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.14);
  --r: 12px; --r-sm: 8px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* ── Nav ── */
nav { background: var(--primary); padding: 0 24px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.5px; text-decoration: none; }
.nav-logo .ni { color: #2dd4bf; }
.nav-links { display: flex; align-items: center; gap: 8px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; transition: all 0.18s; border: none; cursor: pointer; text-decoration: none; }
.btn-ghost { color: rgba(255,255,255,0.8); background: transparent; }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,148,136,0.35); text-decoration: none; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f0fdf4; text-decoration: none; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-lg { padding: 13px 32px; font-size: 16px; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1a4a2e 100%); padding: 72px 24px 60px; text-align: center; color: #fff; }
.hero-eyebrow { display: inline-block; background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.3); color: #4ade80; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(28px, 4.5vw, 46px); font-weight: 900; letter-spacing: -1.2px; margin-bottom: 16px; line-height: 1.1; }
.hero h1 span { color: #4ade80; }
.hero p { font-size: 17px; opacity: 0.75; max-width: 580px; margin: 0 auto; }

/* ── Layout ── */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 60px 24px 80px; }

/* ── Section helpers ── */
.section-label { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.section-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* ── CTA block ── */
.cta-block { background: linear-gradient(90deg, var(--accent), #15803d); border-radius: var(--r); padding: 44px; text-align: center; color: #fff; }
.cta-block h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.cta-block p { opacity: 0.85; font-size: 15px; margin-bottom: 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: var(--primary); color: rgba(255,255,255,0.45); text-align: center; padding: 24px; font-size: 13px; }
footer a { color: rgba(255,255,255,0.35); }
footer a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

/* ── Cookie Banner ── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #1e293b; color: #e2e8f0; padding: 16px 24px; display: none; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.08); }
.cookie-text { font-size: 13px; line-height: 1.6; flex: 1; min-width: 240px; color: rgba(255,255,255,0.8); }
.cookie-text a { color: #4ade80; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: var(--font); transition: all 0.18s; }
.cookie-btn-accept { background: #4ade80; color: #0f172a; }
.cookie-btn-accept:hover { background: #22c55e; }
.cookie-btn-essential { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-essential:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 640px) { .cookie-btns { width: 100%; } .cookie-btn { flex: 1; text-align: center; } }
