/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(139,92,246,0.4);
  --accent: #8b5cf6;
  --accent-2: #06b6d4;
  --accent-glow: rgba(139,92,246,0.15);
  --text: #f0f0f8;
  --text-muted: #9090a8;
  --text-dim: #5a5a75;
  --green: #10b981;
  --gold: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(139,92,246,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

.nav__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }

.nav__center { flex: 1; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--accent); }
.search-bar svg { color: var(--text-muted); flex-shrink: 0; }
.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.9rem;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.search-bar input::placeholder { color: var(--text-dim); }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: #7c3aed; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,92,246,0.4); }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--text); }
.btn--cv {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 8px 16px;
  font-size: 0.8rem;
}
.btn--cv:hover { background: var(--accent-glow); border-color: var(--accent); }
.btn--hire {
  background: var(--green);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.btn--hire:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(16,185,129,0.35); }
.btn--hire-fast {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
}
.btn--hire-fast:hover { border-color: var(--gold); color: var(--gold); }
.btn--google {
  background: #fff;
  color: #333;
  width: 100%;
  justify-content: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.btn--google:hover { background: #f1f1f1; }

/* ─── HERO ─── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-block;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text); }
.stat span { font-size: 0.8rem; color: var(--text-muted); }
.stat__div { width: 1px; height: 40px; background: var(--border); }

/* ─── FILTER ─── */
.filter-bar { padding: 0 0 32px; }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── CANDIDATE CARDS ─── */
.candidates { padding: 0 0 80px; }

.candidates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.cand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cand-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-hover);
}
.cand-card--featured {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.1), var(--shadow);
}

.cand-card__top {
  position: relative;
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cand-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}
.cand-card--featured .cand-card__avatar {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.cand-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.cand-badge--available { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }
.cand-badge--top { background: rgba(245,158,11,0.12); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }

.cand-card__body { padding: 16px 24px; flex: 1; }

.cand-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cand-card__title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cand-card__skills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.skill-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(139,92,246,0.08);
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.15);
}

.cand-card__rating { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.rating-count { font-size: 0.75rem; color: var(--text-dim); }

.cand-card__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cand-card__price { display: flex; align-items: baseline; gap: 3px; }
.price-from { font-size: 0.72rem; color: var(--text-dim); }
.cand-card__price strong { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.price-per { font-size: 0.72rem; color: var(--text-dim); }

/* ─── HOW IT WORKS ─── */
.how { padding: 60px 0 80px; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.section-title { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 48px; }

.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.step { max-width: 260px; text-align: center; }
.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step__arrow { font-size: 1.5rem; color: var(--text-dim); margin-top: 40px; }

/* ─── MARKETING SPLIT ─── */
.marketing-split { padding: 80px 0 100px; background: var(--bg); position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.marketing-split::before {
  content: ''; position: absolute; top: -10%; right: -20%;
  width: 800px; height: 800px; background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.marketing-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.marketing-split__badge { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; }
.marketing-split__title { font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; }
.marketing-split__title span { background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.marketing-split__desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }

.marketing-split__list { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 18px; }
.marketing-split__list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.marketing-split__list li strong { color: #fff; font-weight: 600; }
.check-icon { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(139,92,246,0.1); color: var(--accent); flex-shrink: 0; font-size: 0.8rem; font-weight: 800; border: 1px solid rgba(139,92,246,0.2); }

.marketing-split__visual { position: relative; z-index: 2; }
.visual-window {
  background: #09090e; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05) inset;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.visual-window:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }

.visual-window__header { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.04); }
.visual-window__header .dot { width: 11px; height: 11px; border-radius: 50%; }
.visual-window__header .dot.red { background: #ff5f56; }
.visual-window__header .dot.yellow { background: #ffbd2e; }
.visual-window__header .dot.green { background: #27c93f; }
.win-title { flex: 1; text-align: center; font-family: monospace; font-size: 0.75rem; color: var(--text-dim); margin-right: 48px; }

.visual-window__body { padding: 40px; min-height: 340px; position: relative; background: radial-gradient(circle at center, rgba(139,92,246,0.03), transparent); }
.demo-animation { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.85rem; }
.demo-animation p { margin-bottom: 18px; opacity: 0; animation: typeReveal 0.5s forwards; }
.demo-animation .cmd { color: var(--text); opacity: 1; margin-bottom: 28px; }
.demo-animation .cmd::after { content: '▋'; opacity: 0.5; animation: blink 1s step-end infinite; }
.demo-animation .loading { color: var(--accent-2); animation-delay: 1.5s; }
.demo-animation .loading .spin { display: inline-block; animation: spin 1s linear infinite; }
.demo-animation .success { color: var(--green); animation-delay: 3s; font-weight: 700; }
.demo-animation .hint { color: var(--text-dim); font-family: 'Inter', sans-serif; font-size: 0.75rem; position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; animation-delay: 5s; }

.pulse-circle { position: absolute; right: 60px; bottom: 40px; width: 60px; height: 60px; border-radius: 50%; background: var(--accent); opacity: 0; animation: pulse 3s infinite 3.2s; filter: blur(20px); }

@keyframes typeReveal { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.5; } 50% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(0.5); opacity: 0.5; } }

/* ─── FOOTER ─── */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); background: var(--bg-card); }
.footer__inner { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 40px; 
  padding-bottom: 50px;
}
.footer__col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; font-size: 0.9rem; color: var(--text-muted); }
.footer__contact span { }
.footer__contact a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer__contact a:hover { color: var(--accent); }
.footer__company-info { font-size: 0.85rem; color: var(--text-dim); }
.footer__newsletter { display: flex; flex-direction: column; gap: 12px; }
.footer__newsletter input { 
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border); color: var(--text); outline: none; font-family: 'Inter', sans-serif;
}
.footer__newsletter input:focus { border-color: var(--accent); }
.footer__newsletter button { padding: 12px; font-weight: 600; }

.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0; background: var(--bg); }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__brand { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; }
.footer__brand span { color: var(--accent); }
.footer__copy { font-size: 0.85rem; color: var(--text-dim); }

/* ─── AUTH MODAL ─── */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
}
.modal.is-active { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); }
.modal__box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: min(420px, 90vw);
  text-align: center;
}
.modal__box h2 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.modal__box h2 span { color: var(--accent); }
.modal__box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem;
}
.modal__close:hover { color: var(--text); }

/* ─── CV MODAL ─── */
.cv-modal {
  position: fixed; inset: 0; z-index: 1001;
  display: none; align-items: center; justify-content: center;
}
.cv-modal.is-active { display: flex; }
.cv-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); }
.cv-modal__box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: min(680px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* CV content */
.cv-header { display: flex; gap: 24px; align-items: center; margin-bottom: 32px; }
.cv-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.cv-name { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; }
.cv-title { color: var(--text-muted); margin-top: 4px; }
.cv-badge { display: inline-block; margin-top: 8px; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }

.cv-section { margin-bottom: 28px; }
.cv-section h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }

.cv-skills-list { display: flex; flex-direction: column; gap: 10px; }
.skill-row { display: flex; align-items: center; gap: 12px; }
.skill-row span { font-size: 0.85rem; min-width: 140px; color: var(--text-muted); }
.skill-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 50px; overflow: hidden; }
.skill-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.8s ease; }

.cv-price-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
}
.price-option { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.price-option h5 { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.price-option .big-price { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.price-option p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }

.cv-portfolio { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.portfolio-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
}
.portfolio-item h5 { font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; }
.portfolio-item p { font-size: 0.75rem; color: var(--text-muted); }
.portfolio-num { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--accent); }

/* ─── HIDDEN / FILTER ─── */
.cand-card.hidden { display: none; }

/* ─── SEARCH HIGHLIGHT MISMATCH ─── */
.cand-card.search-hidden { display: none !important; }

/* ─── CV TABS ─── */
.cv-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.cv-tab {
  background: none; border: none; color: var(--text-dim); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
  padding: 10px 14px; border-bottom: 2px solid transparent; transition: all 0.2s;
}
.cv-tab:hover { color: var(--text-muted); }
.cv-tab--active { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── CV STATS ROW ─── */
.cv-stats-row {
  display: flex; gap: 0; margin: 0 0 24px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.cv-stat {
  flex: 1; text-align: center; padding: 14px 8px;
  border-right: 1px solid var(--border);
}
.cv-stat:last-child { border-right: none; }
.cv-stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--accent); }
.cv-stat span { font-size: 0.72rem; color: var(--text-dim); }

/* ─── CV RATING ROW ─── */
.cv-rating-row { display: flex; align-items: center; gap: 6px; margin-top: 6px; flex-wrap: wrap; }

/* ─── PORTFOLIO GRID ─── */
.port-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.port-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  cursor: zoom-in; aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.port-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.port-item:hover { border-color: var(--accent); transform: scale(1.02); }
.port-item:hover img { transform: scale(1.05); }
.port-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  padding: 12px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity 0.2s;
}
.port-item:hover .port-item__overlay { opacity: 1; }
.port-item__overlay h5 { font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; }
.port-item__overlay p { font-size: 0.72rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.port-item--expanded { grid-column: span 2; aspect-ratio: auto; }
.port-item--expanded .port-item__overlay { opacity: 1; }

/* ─── REVIEWS ─── */
.reviews-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.review-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
}
.review-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.review-top strong { font-size: 0.85rem; display: block; }
.review-stars { font-size: 0.8rem; margin-top: 2px; }
.review-date { font-size: 0.72rem; color: var(--text-dim); margin-left: auto; }
.review-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ─── REVIEW FORM ─── */
.review-form {
  border-top: 1px solid var(--border);
  padding-top: 20px; margin-top: 8px;
}
.review-form h5 { font-size: 0.85rem; margin-bottom: 10px; color: var(--text-muted); }
.star-input-row { display: flex; gap: 2px; margin-bottom: 12px; user-select: none; }
.star-input { cursor: pointer; transition: transform 0.1s; }
.star-input:hover { transform: scale(1.2); }
.review-form textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.85rem; padding: 12px; resize: vertical; margin-bottom: 12px; outline: none;
}
.review-form textarea:focus { border-color: var(--accent); }

/* ─── SKILL PCT ─── */
.skill-pct { font-size: 0.75rem; color: var(--text-dim); min-width: 36px; text-align: right; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* NAV */
  .nav__center { display: none; }
  .nav__auth .btn--ghost { display: none; } /* Skjul "Log ind" tekst på mobil */
  .nav__auth .btn--primary { font-size: 0.78rem; padding: 8px 14px; }

  /* HERO */
  .hero { padding: 48px 0 40px; }
  .hero__stats { gap: 16px; }
  .stat__div { height: 28px; }

  /* FILTER */
  .filter-chips { gap: 8px; }
  .chip { font-size: 0.78rem; padding: 6px 13px; }

  /* KANDIDAT GRID */
  .candidates__grid { grid-template-columns: 1fr; }

  /* HOW IT WORKS */
  .step__arrow { display: none; }
  .how__steps { flex-direction: column; align-items: center; }

  /* CV MODAL */
  .cv-modal__box { padding: 24px 20px; width: 96vw; }
  .cv-header { flex-direction: column; align-items: center; text-align: center; }
  .cv-header__info { text-align: center; }
  .cv-rating-row { justify-content: center; }
  .cv-price-box { grid-template-columns: 1fr; }
  .cv-stats-row { flex-wrap: wrap; }
  .cv-stat { min-width: 30%; }

  /* TABS — horisontalt scroll på mobil */
  .cv-tabs { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: 2px; }
  .cv-tab { white-space: nowrap; font-size: 0.78rem; padding: 8px 10px; flex-shrink: 0; }

  /* PORTFOLIO */
  .port-grid { grid-template-columns: 1fr 1fr; }
  .port-item--expanded { grid-column: span 1; }

  /* SKILL ROW */
  .skill-row span:first-child { min-width: 110px; font-size: 0.78rem; }

  /* ─── MARKETING SPLIT ─── */
  .marketing-split { padding: 60px 0; }
  .marketing-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .marketing-split__title { font-size: 2rem; }
  .pulse-circle { right: 20px; bottom: 20px; width: 40px; height: 40px; }
  .visual-window { transform: none !important; }
  .visual-window:hover { transform: none !important; }

  /* ─── FOOTER ─── */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  /* ─── LEGAL PAGES ─── */
  .page-header { padding: 40px 20px 20px; }
  .page-header h1 { font-size: 2rem; }
  .page-content { padding: 40px 20px; }
}
