.cv-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.cv-header-inner { display: flex; align-items: center; justify-content: space-between; }
.cv-header-right { display: flex; align-items: center; gap: 1.5rem; }

.cv-main { padding: 3rem 0 5rem; background: var(--bg); min-height: 100vh; }
.cv-container { max-width: 860px; }

.cv-profile {
  display: flex; align-items: center; gap: 2.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.cv-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cv-profile-text h1 { font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; }
.cv-title { color: var(--accent); font-weight: 600; font-size: 1rem; margin-bottom: 0.875rem; }
.cv-contacts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.875rem; color: var(--text-muted); }
.cv-contacts a { color: var(--accent); }

.cv-section {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 2.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.cv-section h2 {
  color: var(--primary); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent); margin-bottom: 1.5rem;
}
.cv-section > p { font-size: 0.95rem; line-height: 1.8; }

.cv-skills-grid { display: flex; flex-direction: column; gap: 0.625rem; }
.cv-skill-row { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; font-size: 0.9rem; align-items: baseline; }
.cv-skill-label { font-weight: 600; color: var(--text); }

.cv-entry { margin-bottom: 2rem; }
.cv-entry:last-child { margin-bottom: 0; }
.cv-entry-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 0.625rem; flex-wrap: wrap;
}
.cv-entry h3 { color: var(--primary); font-size: 1rem; }
.cv-entry-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-top: 0.2rem; }
.cv-entry-meta {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.2rem; font-size: 0.8rem; color: var(--text-muted);
}
.cv-entry-meta a { color: var(--accent); }
.cv-tech {
  font-size: 0.8rem; color: var(--text-muted); background: var(--bg);
  padding: 0.35rem 0.75rem; border-radius: var(--radius);
  margin-bottom: 0.875rem; font-weight: 500;
}
.cv-bullets { list-style: none; padding: 0; }
.cv-bullets li {
  font-size: 0.875rem; color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative; line-height: 1.65;
}
.cv-bullets li::before { content: '–'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.cv-languages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cv-lang-item {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem; background: var(--bg); border-radius: var(--radius);
}
.cv-lang-name { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.cv-lang-level { font-size: 0.825rem; color: var(--text-muted); }

@media (max-width: 640px) {
  .cv-profile { flex-direction: column; text-align: center; gap: 1.25rem; }
  .cv-contacts { justify-content: center; }
  .cv-section { padding: 1.5rem; }
  .cv-skill-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .cv-entry-header { flex-direction: column; }
  .cv-entry-meta { align-items: flex-start; }
  .cv-languages { grid-template-columns: repeat(2, 1fr); }
  .cv-header-right { gap: 0.75rem; }
}
