* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --bg-dark: #0b0b0f;
   --bg-card: #14141c;
   --surface: #1e1e2a;
   --primary: #fbbf24;
   --primary-dark: #f59e0b;
   --primary-glow: rgba(251, 191, 36, 0.3);
   --accent: #fcd34d;
   --text-main: #f3f4f6;
   --text-muted: #9ca3af;
   --border-color: #2a2a3a;
   --radius: 24px;
   --radius-sm: 16px;
   --container: 1280px;
   --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
   font-family: 'Inter', sans-serif;
   background-color: var(--bg-dark);
   color: var(--text-main);
   line-height: 1.6;
}

.container {
   max-width: var(--container);
   margin: 0 auto;
   padding: 0 2rem;
}

h1,
h2,
h3 {
   font-family: 'Space Grotesk', sans-serif;
   font-weight: 700;
   line-height: 1.2;
}

h1 {
   font-size: 3.5rem;
   background: linear-gradient(to right, #fff, var(--primary));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 1rem;
}

h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
   color: #fff;
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.875rem 2rem;
   border-radius: 60px;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: all var(--transition);
   text-decoration: none;
}

.btn--primary {
   background: linear-gradient(135deg, var(--primary), var(--primary-dark));
   color: #0b0b0f;
   box-shadow: 0 8px 20px var(--primary-glow);
}

.btn--primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 30px var(--primary-glow);
}

.btn--outline {
   border: 2px solid var(--primary);
   color: var(--primary);
   background: transparent;
}

.btn--outline:hover {
   background: rgba(251, 191, 36, 0.1);
}

/* Шапка */
.header {
   position: sticky;
   top: 0;
   z-index: 100;
   background: rgba(11, 11, 15, 0.8);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--border-color);
}

.header__container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 80px;
}

.logo {
   font-size: 2rem;
   font-weight: 700;
   font-family: 'Space Grotesk', sans-serif;
   background: linear-gradient(135deg, var(--primary), #fde68a);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   text-decoration: none;
}

.nav__list {
   display: flex;
   gap: 2.5rem;
   list-style: none;
}

.nav__link {
   text-decoration: none;
   color: var(--text-muted);
   font-weight: 500;
   transition: color var(--transition);
   position: relative;
}

.nav__link::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 0;
   height: 2px;
   background: linear-gradient(90deg, var(--primary), #fde68a);
   transition: width var(--transition);
}

.nav__link:hover {
   color: #fff;
}

.nav__link:hover::after {
   width: 100%;
}

.nav__link.active {
   color: var(--primary);
}

/* Страница About */
.page-header {
   padding: 4rem 0 2rem;
   text-align: center;
}

.about-section {
   padding: 2rem 0 5rem;
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   margin-bottom: 5rem;
}

.about-content p {
   color: var(--text-muted);
   font-size: 1.125rem;
   margin-bottom: 1.5rem;
}

.about-image img {
   width: 100%;
   border-radius: var(--radius);
   border: 1px solid var(--border-color);
   box-shadow: 0 20px 40px -15px rgba(251, 191, 36, 0.2);
}

.stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   margin: 4rem 0;
}

.stat-card {
   background: var(--bg-card);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-sm);
   padding: 2rem;
   text-align: center;
}

.stat-number {
   font-size: 3rem;
   font-weight: 700;
   font-family: 'Space Grotesk', sans-serif;
   color: var(--primary);
   margin-bottom: 0.5rem;
}

.stat-label {
   color: var(--text-muted);
   font-size: 1rem;
}

.values-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.value-card {
   background: var(--bg-card);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-sm);
   padding: 2rem;
   transition: var(--transition);
}

.value-card:hover {
   border-color: var(--primary);
   transform: translateY(-5px);
   box-shadow: 0 15px 30px -10px var(--primary-glow);
}

.value-icon {
   font-size: 2.5rem;
   color: var(--primary);
   margin-bottom: 1rem;
}

.value-card h3 {
   font-size: 1.5rem;
   margin-bottom: 0.75rem;
}

.value-card p {
   color: var(--text-muted);
}

.team-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.team-card {
   text-align: center;
}

.team-photo {
   width: 100%;
   aspect-ratio: 1;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--primary), var(--accent));
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
   color: #0b0b0f;
}

.team-card h4 {
   font-size: 1.25rem;
   margin-bottom: 0.25rem;
}

.team-card p {
   color: var(--text-muted);
   font-size: 0.875rem;
}

/* Футер */
.footer {
   background: var(--bg-card);
   border-top: 1px solid var(--border-color);
   padding: 4rem 0 2rem;
   margin-top: 4rem;
}

.footer__container {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;
   margin-bottom: 3rem;
}

.footer__logo {
   font-size: 2rem;
   font-weight: 700;
   font-family: 'Space Grotesk', sans-serif;
   background: linear-gradient(135deg, var(--primary), #fde68a);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
   margin-bottom: 1rem;
   text-decoration: none;
}

.footer__col p {
   color: var(--text-muted);
   margin: 0.5rem 0;
}

.footer__col h4 {
   color: #fff;
   margin-bottom: 1rem;
}

.footer__col ul {
   list-style: none;
}

.footer__col li {
   margin-bottom: 0.5rem;
}

.footer__col a {
   color: var(--text-muted);
   text-decoration: none;
   transition: color var(--transition);
}

.footer__col a:hover {
   color: var(--primary);
}

.footer__bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid var(--border-color);
   color: var(--text-muted);
}

@media (max-width: 1024px) {
   .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .stats-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .values-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .team-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .nav {
      display: none;
   }

   .stats-grid {
      grid-template-columns: 1fr;
   }

   .values-grid {
      grid-template-columns: 1fr;
   }

   .team-grid {
      grid-template-columns: 1fr;
   }

   .footer__container {
      grid-template-columns: 1fr;
   }
}

.fade-up {
   opacity: 0;
   transform: translateY(20px);
   animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
   to {
      opacity: 1;
      transform: translateY(0);
   }
}