/*=====================================================================================
FONTface
===============================================================================*/
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter18pt-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter18pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter18pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter18pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}




/* ============================================================================
       CSS VARIABLES & BASE STYLES
       ============================================================================ */
:root {
  --color-primary: #0F172A;
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-background: #F8FAFC;
  --color-success: #22C55E;
  --color-text: #1E293B;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;

  --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.5);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --base-font-size: 16px;
  --line-height-base: 1.6;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* High Contrast Mode */
.high-contrast {
  --color-primary: #000000;
  --color-accent: #0047AB;
  --color-accent-hover: #003380;
  --color-background: #FFFFFF;
  --color-text: #000000;
  --color-text-muted: #333333;
  --color-border: #000000;
}

/* Text Size Modifiers */
.text-size-large {
  font-size: 18px;
}

.text-size-xlarge {
  font-size: 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: var(--base-font-size);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  min-height: 100vh;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Focus Styles */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================================
       UTILITY CLASSES
       ============================================================================ */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }
}

/* ============================================================================
       TYPOGRAPHY
       ============================================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

p {
  line-height: 1.75;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: var(--color-white);
}

.text-slate-300 {
  color: #CBD5E1;
}

.text-slate-400 {
  color: #94A3B8;
}

.text-slate-500 {
  color: #64748B;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-900 {
  color: #0F172A;
}

.text-blue-400 {
  color: #60A5FA;
}

.text-blue-600 {
  color: var(--color-accent);
}

.text-green-600 {
  color: var(--color-success);
}

.text-red-600 {
  color: #DC2626;
}

.text-yellow-400 {
  color: #FACC15;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.75;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* ============================================================================
       BUTTONS
       ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: inherit;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: #F1F5F9;
  color: var(--color-slate-900);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #E2E8F0;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover:not(:disabled) {
  background-color: rgba(37, 99, 235, 0.05);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-accent);
}

.btn-ghost:hover:not(:disabled) {
  background-color: rgba(37, 99, 235, 0.05);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ============================================================================
       CARDS
       ============================================================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  transition: all var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #BFDBFE;
  transform: translateY(-4px);
}

.card-blue {
  background-color: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-active {
  background-color: #EFF6FF;
  border-color: #BFDBFE;
  box-shadow: var(--shadow-md);
}

/* ============================================================================
       FORMS
       ============================================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #DC2626;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.875rem;
  color: #DC2626;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-helper {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-accent);
}

/* ============================================================================
       SECTIONS
       ============================================================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin: 0 auto;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-slate-50 {
  background-color: #F8FAFC;
}

.bg-slate-900 {
  background-color: var(--color-primary);
}

.bg-blue-50 {
  background-color: #EFF6FF;
}

.bg-gradient-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #1E3A8A 100%);
  
}

/* ============================================================================
       NAVIGATION
       ============================================================================ */
/* Основное состояние (когда находимся в самом верху) */
.nav {
  position: sticky;
  /* Включаем прилипание */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  /* Плавность появления */

  /* Начальное состояние (прозрачный фон) */
  background-color: transparent;
  backdrop-filter: blur(0px);
  box-shadow: none;
}

/* Состояние, которое будет добавляться через JS при скролле */
.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  /* Появляется фон */
  backdrop-filter: blur(8px);
  /* Размытие */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Появляется тень */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-container {
    height: 5rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-primary);
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  color: var(--color-white);
  width: 1.5rem;
  height: 1.5rem;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.nav-mobile.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.nav-mobile-link:hover {
  color: var(--color-accent);
  background-color: #F8FAFC;
}

/* ============================================================================
       HERO SECTION
       ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 15px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: #3B82F6;
}

.hero-bg-circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: #60A5FA;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  color: #93C5FD;
  width: 1rem;
  height: 1rem;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  color: #60A5FA;
}

.hero-description {
  font-size: 1.125rem;
  color: #CBD5E1;
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #60A5FA;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
}

.hero-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background-color: rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-2xl);
  filter: blur(20px);
}

.hero-image-img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-floating-card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card-icon svg {
  color: var(--color-success);
  width: 1.5rem;
  height: 1.5rem;
}

.hero-floating-card-text {
  font-weight: 600;
  color: var(--color-primary);
}

.hero-floating-card-subtext {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================================================
       ABOUT SECTION
       ============================================================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.about-content {
  space-y: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.about-feature svg {
  color: var(--color-success);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background-color: #DBEAFE;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================================
       NOMINATIONS SECTION
       ============================================================================ */
.nominations-grid {
  display: grid;
  gap: 1rem;
}


.nomination-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 576px) {
  .nomination-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

}

@media (min-width: 768px) {
  .nominations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .nominations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nomination-icon {
  width: 3rem;
  height: 3rem;
  background-color: #DBEAFE;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.nomination-card:hover .nomination-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.nomination-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.nomination-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.nomination-card:hover .nomination-title {
  color: var(--color-accent);
}

.nomination-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================================================
       HOW TO PARTICIPATE SECTION
       ============================================================================ */
.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #BFDBFE, #3B82F6, #BFDBFE);
  display: none;
}

@media (min-width: 1024px) {
  .steps-line {
    display: block;
  }
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  text-align: center;
  padding-top: 3rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background-color: #DBEAFE;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================================
       STORIES SECTION
       ============================================================================ */
.stories-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  display: flex;
  flex-direction: column;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #DBEAFE;
}

.story-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.story-role {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.story-company {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.story-quote {
  flex: 1;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.story-stars {
  display: flex;
  gap: 0.125rem;
  margin-top: 1rem;
}

.story-stars svg {
  width: 1rem;
  height: 1rem;
  color: #FACC15;
  fill: #FACC15;
}

/* ============================================================================
       TIMELINE SECTION
       ============================================================================ */
.timeline-container {
  max-width: 48rem;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:hover {
  border-color: #BFDBFE;
}

.timeline-item-active {
  background-color: #EFF6FF;
  border-color: #BFDBFE;
  box-shadow: var(--shadow-md);
}

.timeline-dot-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-dot-active {
  background-color: var(--color-accent);
}

.timeline-dot-inactive {
  background-color: #CBD5E1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background-color: #E2E8F0;
  margin: 0.5rem 0;
}

.timeline-content {
  flex: 1;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

.timeline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.timeline-badge {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.timeline-badge-active {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.timeline-badge-inactive {
  background-color: #F1F5F9;
  color: var(--color-text-muted);
}

.timeline-current {
  font-size: 0.875rem;
  color: var(--color-success);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-current-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.timeline-description {
  color: var(--color-text-muted);
}

/* ============================================================================
       REGISTRATION SECTION
       ============================================================================ */
.registration-form-container {
  max-width: 42rem;
  margin: 0 auto;
}

.registration-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-submit {
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

.form-disclaimer a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 3rem;
}

.form-success-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  color: var(--color-white);
  width: 2.5rem;
  height: 2.5rem;
}

.form-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.form-success-text {
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ============================================================================
       FOOTER
       ============================================================================ */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  color: var(--color-white);
  width: 1.5rem;
  height: 1.5rem;
}

.footer-brand-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-brand-subtext {
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer-description {
  color: #94A3B8;
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #94A3B8;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #94A3B8;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #1E293B;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #64748B;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #64748B;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ============================================================================
       ACCESSIBILITY PANEL
       ============================================================================ */
.accessibility-panel {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
}

.accessibility-toggle {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background-color var(--transition-fast);
}

.accessibility-toggle:hover {
  background-color: var(--color-accent-hover);
}

.accessibility-panel-content {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  padding: 1rem;
  width: 18rem;
  display: none;
  animation: slideUp 0.3s ease;
}

.accessibility-panel-content.open {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accessibility-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.accessibility-section {
  margin-bottom: 1rem;
}

.accessibility-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.accessibility-buttons {
  display: flex;
  gap: 0.5rem;
}

.accessibility-size-btn {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.accessibility-size-btn:hover {
  border-color: #93C5FD;
}

.accessibility-size-btn.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.accessibility-contrast-btn {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.accessibility-contrast-btn:hover {
  border-color: #93C5FD;
}

.accessibility-contrast-btn.active {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.accessibility-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ============================================================================
       ANIMATIONS
       ============================================================================ */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-delay {
  animation: fadeIn 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
       PRINT STYLES
       ============================================================================ */
@media print {
  .no-print {
    display: none !important;
  }

  .nav,
  .accessibility-panel {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ============================================================================
       SVG ICONS
       ============================================================================ */
.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}


/* ============================================================================
   БЕЗОПАСНЫЙ БЛОК МАСШТАБИРОВАНИЯ САЙТА (БЕЗ СЛОМА ПАНЕЛИ ДОСТУПНОСТИ)
   ============================================================================ */

/* 1. Возвращаем переключение базового размера для всего сайта через классы */
html.size-large {
  font-size: 20px !important;
  /* Увеличенный размер для А+ */
}

html.size-xlarge {
  font-size: 24px !important;
  /* Максимальный размер для А++ */
}

/* 2. АБСОЛЮТНЫЙ ЩИТ ДЛЯ ПАНЕЛИ ДОСТУПНОСТИ (px ВМЕСТО rem)
   Этот блок полностью отключает влияние классов size-large и size-xlarge на панель настроек.
*/
.b-accessibility-popup,
.b-accessibility-panel,
html.size-large .b-accessibility-popup,
html.size-xlarge .b-accessibility-popup,
html.size-large .b-accessibility-panel,
html.size-xlarge .b-accessibility-panel {
  display: block !important;
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  width: 290px !important;
  /* Фиксированная ширина виджета в px */
  max-width: 92vw !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  padding: 12px !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  z-index: 999999 !important;
  /* Всегда поверх сайта */
  height: auto !important;
  font-size: 14px !important;
  /* Базовый шрифт внутри панели навсегда заперт в px */
}

/* Кнопки внутри панели всегда стоят только в один горизонтальный ряд */
.b-accessibility-panel>div,
html.size-large .b-accessibility-panel>div,
html.size-xlarge .b-accessibility-panel>div {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  /* Запрет на перенос кнопок вертикально */
  justify-content: space-between !important;
  gap: 4px !important;
  width: 100% !important;
  height: auto !important;
}

/* Мелкие текстовые подписи внутри панели ("Размер шрифта") */
.b-accessibility-panel span,
.b-accessibility-panel p,
html.size-large .b-accessibility-panel span,
html.size-xlarge .b-accessibility-panel span {
  font-size: 13px !important;
  /* Жесткий размер в пикселях */
  color: #475569 !important;
  display: block !important;
  text-align: left !important;
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
}

/* Сами кнопки внутри панели (А, А+, А++, цвета) */
.b-accessibility-btn,
html.size-large .b-accessibility-btn,
html.size-xlarge .b-accessibility-btn {
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  /* Кнопки сохраняют фиксированную высоту */
  min-height: 34px !important;
  padding: 0 4px !important;
  font-size: 11px !important;
  /* Текст кнопок внутри панели никогда не вырастет */
  font-weight: 600 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  /* Всегда разрешаем клики */
}

/* Иконки глаза и другие элементы внутри кнопок */
.b-accessibility-btn svg,
.b-accessibility-btn i,
html.size-large .b-accessibility-btn svg,
html.size-xlarge .b-accessibility-btn svg {
  width: 14px !important;
  height: 14px !important;
  font-size: 14px !important;
  margin: 0 4px 0 0 !important;
  flex-shrink: 0 !important;
}

/* Полная защита от потери клика, если нажали точно на букву на кнопке */
.b-accessibility-btn *,
html.size-large .b-accessibility-btn *,
html.size-xlarge .b-accessibility-btn * {
  pointer-events: none !important;
  font-size: 11px !important;
}

/* Разрешаем верхней плашке сайта показывать выпадающий виджет */
.top-bar,
.top-bar-container,
html.size-large .top-bar,
html.size-xlarge .top-bar {
  overflow: visible !important;
  position: relative !important;
  z-index: 99998 !important;
}
.nav-mobile {
  display: none;
  /* ... твои стили ... */
}

.nav-mobile.active {
  display: block;
}