@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Inter:wght@300;400;500&display=swap');

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

html {
  height: 100%;
}

:root {
  --bg: #f5f6f2;
  --muted: #dde0d6;
  --text: #2b2b2b;
  --line: #e2e2e2;
  --card: #ffffff;
  --btn: #1f1f1f;
}

body {
  font-family: 'Inter', sans-serif;
  /* background: var(--bg); */
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  gap: 24px;
}



.logo img {
  height: 89px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  padding: 6px 2px;
}

.nav a:hover {
  text-decoration: underline;
}

.lang-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.lang-switcher button {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 6px;
}

.lang-switcher button.active {
  text-decoration: underline;
}

.hero {
  background: var(--muted);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-text h1 span {
  font-style: italic;
}

.hero-text p {
  max-width: 460px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--btn);
}

.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--text);
}

.image-placeholder {
  background: #c9c9c9;
  height: 320px;
}

.section {
  padding: 80px 0;
  background: var(--card);
  text-align: center;
}

.section-muted {
  padding: 80px 0;
  background: var(--muted);
  text-align: center;
}

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 18px;
}

.p {
  max-width: 760px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.card {
  background: var(--card);
  padding: 28px;
  text-align: center;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.list {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: left;
}

.list li {
  margin: 10px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 22px auto 0;
}

.metric {
  background: var(--card);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--line);
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
}

.footer {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  width: 100%;
  margin-top: auto;
  border-top: none;
}

/* VIDEO GRID */
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 26px auto 0;
}

.video {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px;
}

.video iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: all .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 160px 1fr 140px;
  }
}

@media (max-width: 900px) {

  .hero-grid,
  .cards,
  .metrics,
  .videos {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }
}


.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.video-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 16px;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.video-title {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  /* HEADER */
  .header-inner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px 0;
    row-gap: 10px;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .nav {
    justify-content: center;
    gap: 10px;
  }

  .nav a {
    font-size: 13px;
  }

  .lang-switcher {
    justify-content: center;
  }

  /* HERO */
  .hero {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text p {
    font-size: 14px;
  }
.image-placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  /* SECTIONS */
  .section,
  .section-muted {
    padding: 50px 0;
  }

  .h2 {
    font-size: 28px;
  }

  .p {
    font-size: 14px;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
  }

  /* VIDEO */
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video iframe,
  .video-card video {
    height: auto;
  }

  /* QUOTE */
  .quote {
    font-size: 18px;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .image-placeholder {
    height: 280px;
  }
}

/* ===========================
   DROPDOWN MENU (HEADER)
   =========================== */

.nav .dropdown {
  position: relative;
}

.nav .dropdown-toggle {
  background: none;
  border: 0;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 2px;
  font-family: inherit;
}

.nav .dropdown-toggle::after {
  content: " ▾";
  font-size: 11px;
}



.nav .dropdown-menu a:hover {
  background: rgba(255, 255, 255, .12);
}

.dropdown.open .dropdown-menu {
  display: flex;
}

/* desktop hover */
@media (min-width: 900px) {
  .nav .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* ===========================
   SOCIAL LINKS
   =========================== */

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: #2f6ae0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #e0d0d0;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================= */
/* DROPDOWN MENU FIX */
/* ============================= */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: var(--text);
  padding: 6px 2px;
}

.dropdown-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu a {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--muted);
}

/* DESKTOP HOVER */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* MOBILE CLICK */
.dropdown.open .dropdown-menu {
  display: flex;
}


/* ===========================
   DROPDOWN MENU (HEADER)
   =========================== */

.nav .dropdown {
  position: relative;
}

.nav .dropdown-toggle {
  background: none;
  border: 0;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 2px;
  font-family: inherit;
}

.nav .dropdown-toggle::after {
  content: " ▾";
  font-size: 11px;
}

.nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  display: none;
  flex-direction: column;
  z-index: 999;
  padding: 0;
}

.nav .dropdown-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: var(--text);
  padding: 12px 16px !important;
  margin: 0 !important;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.nav .dropdown-menu a:last-child {
  margin: 0 !important;
  padding: 12px 16px !important;
}

.nav .dropdown-menu a:hover {
  background: var(--muted);
}

.dropdown.open .dropdown-menu {
  display: flex;
}

/* desktop hover */
@media (min-width: 900px) {
  .nav .dropdown:hover .dropdown-menu {
    display: flex;
  }
}


/* ===========================
   CLEAN DROPDOWN MENU
   =========================== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  padding: 6px 2px;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu a {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  /* white-space: nowrap; */
}

.dropdown-menu a:hover {
  background: var(--muted);
}

/* DESKTOP */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* MOBILE */
.dropdown.open .dropdown-menu {
  display: flex;
}



.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: #2f6ae0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}


/* ===========================
   SIDE SOCIAL BAR (GULYAMOV STYLE)
   =========================== */

.social-side {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}


.social-side a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-side svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
  opacity: .75;
}

.social-side a:hover {
  background: var(--muted);
  transform: translateX(-3px);
}

.social-side a:hover svg {
  opacity: 1;
}






/* ===========================
   SOCIAL ICON FIX
   =========================== */

.social-side a {
  background: #fff;
  border: 1px solid var(--line);
}

.social-side svg {
  fill: #333;
  opacity: 1;
}

.social-side a:hover {
  background: var(--muted);
}



/* HIDE ON MOBILE */
@media (max-width: 768px) {
  .social-side {
    display: none;
  }
}

/* ===========================
   MOBILE HEADER + BURGER
   =========================== */

.burger {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: all .25s ease;
}

/* ACTIVE STATE */
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 14px;
    border-top: 1px solid var(--line);
    display: none;
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav .dropdown-toggle {
    font-size: 16px;
  }

  /* DROPDOWN MOBILE */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0;
  }
}


/* ===========================
   HEADER RESPONSIVE FIX
   =========================== */

/* скрываем бургер по умолчанию */
.burger {
  display: none;
}

/* tablet + mobile */
@media (max-width: 1024px) {

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
    /* <-- ВАЖНО */
  }

  .burger {
    display: flex;
    width: 34px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .burger span {
    height: 2px;
    background: var(--text);
    border-radius: 2px;
  }

  /* открытое меню */
  .header.open .nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    z-index: 999;
  }

  .header.open .nav a,
  .header.open .dropdown-toggle {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    width: 100%;
    text-align: left;
  }

  .header.open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
  }
}


/* ===========================
   SOCIAL ICON VISUAL FIX
   =========================== */

.social-side a {
  width: 44px;
  height: 44px;
}

.social-side svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
}

/* выравниваем визуальный вес */
.social-side svg path {
  vector-effect: non-scaling-stroke;
}

.social-side a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.social-side a:hover {
  background: var(--muted);
  transform: translateX(-4px);
}

.social-side a:hover svg {
  fill: #000;
}

.social-side svg {
  stroke: var(--text);
  fill: none;
}


/* ===========================
   SOCIAL ICONS — FINAL FIX
   =========================== */

.social-side a {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* базовый размер */
.social-side svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* STROKE icons */
.social-side svg path {
  fill: none;
  stroke: #2b2b2b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Instagram / filled icons FIX */
.social-side a.instagram svg path,
.social-side a.instagram svg rect {
  fill: #2b2b2b;
  stroke: none;
}

/* hover */
.social-side a:hover {
  background: var(--muted);
}




/* ===========================
   SIDE SOCIAL BAR — CLEAN SVG
   =========================== */

.social-side {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.social-side a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-side svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-side a:hover {
  background: var(--muted);
  transform: translateX(-3px);
}

/* hide on mobile */
@media (max-width: 768px) {
  .social-side {
    display: none;
  }
}

a {
  text-decoration: none;
}

.nav > a:last-child {
  margin-left: 12px;
}

@media (max-width: 1024px) {

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header.open .nav {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    z-index: 999;
  }

  .header.open .nav a,
  .header.open .dropdown-toggle {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }

  .header.open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
}


/* === SOCIAL SIDE – FONT AWESOME FIX === */

.social-side a {
  width: 42px;
  height: 42px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-side i {
  font-size: 18px;
  color: var(--btn);
  /* <-- ФИКС ЦВЕТА */
  opacity: .85;
}

.social-side a:hover {
  background: var(--muted);
}

.social-side a:hover i {
  opacity: 1;
}

/* ===========================
   EDUCATION DIPLOMA CARDS
   =========================== */

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 40px auto 0;
}

.edu-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px;
  max-width: 220px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.edu-card img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  background: #f5f6f2;
}

.edu-card p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: .85;
}

.edu-info {
  padding: 16px 0 0;
}

.edu-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.edu-info p {
  font-size: 14px;
  margin-bottom: 4px;
  opacity: .8;
}

.edu-info .institution {
  font-weight: 500;
}

.edu-info .degree {
  color: #666;
  font-style: italic;
}

/* ===========================
   EXPERIENCE TIMELINE
   =========================== */

.experience-timeline {
  max-width: 800px;
  margin: 40px auto 0;
}

.experience-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.experience-header h3 {
  font-size: 20px;
  margin: 0;
  color: var(--text);
}

.experience-type {
  background: var(--muted);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.experience-meta span {
  font-size: 14px;
  opacity: .8;
}

.experience-meta .institution {
  font-weight: 500;
}

.experience-meta .duration {
  color: #666;
  font-style: italic;
}

.experience-description p {
  line-height: 1.6;
  opacity: .9;
}

/* ===========================
   FEATURED CONTENT
   =========================== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.featured-section {
  background: var(--card);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.featured-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text);
  border-bottom: 2px solid var(--muted);
  padding-bottom: 8px;
}

.featured-items {
  margin-bottom: 20px;
}

.featured-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.featured-item:last-child {
  border-bottom: none;
}

.featured-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.featured-item h4 a {
  color: var(--text);
  text-decoration: none;
  transition: color .25s ease;
}

.featured-item h4 a:hover {
  color: var(--btn);
}

.featured-item .meta {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 4px;
}

.featured-item .citation,
.featured-item .role,
.featured-item .status,
.featured-item .language {
  display: inline-block;
  background: var(--muted);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

.btn-small {
  display: inline-block;
  background: var(--btn);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background .25s ease;
}

.btn-small:hover {
  background: #333;
}

/* ===========================
   METRICS SUMMARY
   =========================== */

.metrics-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 40px auto 0;
}

.metric-item {
  background: var(--card);
  padding: 24px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  border: 1px solid var(--line);
}

.metric-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--btn);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ===========================
   PROFILE SUMMARY
   =========================== */

.profile-summary {
  background: var(--card);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  margin-bottom: 40px;
}

.profile-summary p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.profile-summary p:last-child {
  margin-bottom: 0;
}

/* ===========================
   SKILLS GRID
   =========================== */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.skill-item {
  background: var(--card);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  border: 1px solid var(--line);
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.skill-name {
  font-weight: 500;
  color: var(--text);
}

.skill-category {
  background: var(--muted);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skill-bar {
  background: var(--line);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--btn), #666);
  border-radius: 4px;
  transition: width .5s ease;
}

.skill-percentage {
  font-size: 12px;
  opacity: .7;
  text-align: right;
}

/* ===========================
   LISTS AND ITEMS
   =========================== */

.education-list,
.experience-list,
.awards-list {
  margin-top: 24px;
}

.education-list .education-item,
.experience-list .experience-item,
.awards-list .award-item {
  background: var(--card);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.education-list .education-item h4,
.experience-list .experience-item h4,
.awards-list .award-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.education-list .education-item p,
.experience-list .experience-item p,
.awards-list .award-item p {
  font-size: 14px;
  opacity: .8;
  margin-bottom: 4px;
}

.education-list .education-item .description,
.experience-list .experience-item .description,
.awards-list .award-item .description {
  font-style: italic;
  opacity: .7;
}

/* ===========================
   NO CONTENT
   =========================== */

.no-content {
  text-align: center;
  padding: 60px 20px;
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.no-content p {
  font-size: 16px;
  opacity: .7;
}

/* ===========================
   CV CONTAINER
   =========================== */

.cv-container {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .metrics-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .experience-meta {
    flex-direction: column;
    gap: 8px;
  }

  .experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .metrics-summary {
    grid-template-columns: 1fr;
  }

  .edu-card {
    padding: 12px;
  }

  .experience-item {
    padding: 16px;
  }

  .featured-section {
    padding: 16px;
  }
}

