/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-50: #f0f4fa;
  --primary-100: #dce5f2;
  --primary-200: #bccbe5;
  --primary-300: #96acd4;
  --primary-400: #708dc2;
  --primary-500: #4b6fae;
  --primary-600: #003c93;
  --primary-700: #002f75;
  --primary-800: #00235c;
  --primary-900: #001845;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #334155;
  background-color: #f8fafc;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
img {
    max-width: 100%;
    display: block;
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-600);
  color: white;
  border: 1px solid var(--primary-600);
}

.btn-primary:hover {
  background: var(--primary-700);
}

.btn-outline {
  background: white;
  color: var(--primary-600);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-lg {
  padding: 14px 24px;
}

.btn-submit {
  width: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-600);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: none;
}

@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: white;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* ===== HEADER ===== */
.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-bottom-color: #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 72px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: 70px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
      max-width: 300px;
}

.logo-title {
  display: block;
  color: var(--primary-900);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-subtitle {
  display: block;
  color: #6b7280;
  font-size: 9px;
  font-weight: 700;
  /*letter-spacing: 0.15em;*/
  text-transform: uppercase;
}

.socials {
    display: flex;
    gap: 0.625rem;
}
.social {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #cbd5e1;
    transition: all 0.2s;
    text-decoration: none;
}
.social svg {
  width: 18px;
  height: 18px;
}
.social:hover {
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}
.social:nth-child(1):hover {
    background: #3b5998;
}
.social:nth-child(2):hover {
    background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
}
.social:nth-child(3):hover {
    background: #dc2626;
}
.social:nth-child(4):hover {
    background: #0088cc;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  height: 100%;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  height: 100%;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-600);
  border-bottom-color: var(--primary-600);
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background: var(--primary-600);
  color: white;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  padding: 8px;
  background: none;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle:hover {
  color: var(--primary-600);
  background: #f3f4f6;
}

/* Mobile Nav */
.mobile-nav {
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f9fafb;
  transition: all 0.3s;
}

.mobile-link:hover {
  background: var(--primary-600);
  color: white;
}

.mobile-contacts {
  padding: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #4b5563;
}

.mobile-contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-contacts p:last-child {
  margin-bottom: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== HERO — обновлённые стили ===== */
.hero {
  position: relative;
  min-height: 600px;
  height: 60vh;
  max-height: 800px;
  background: #ffffff;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Левая часть — текст */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 55%;
  padding: 60px 48px 60px max((100% - 1280px) / 2 + 24px, 24px);
  background: #ffffff;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -80px;
  width: 160px;
  height: 100%;
  background: #ffffff;
  transform: skewX(-12deg);
  z-index: -1;
}

.hero-content {
  max-width: 560px;
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 32px;
}

/* Кнопка со скошенными углами */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 36px;
  background: var(--primary-600);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: background 0.3s ease;
  margin-bottom: 48px;
}

.hero-btn:hover {
  background: var(--primary-700);
}

/* Статистика */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 32px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: #e2e8f0;
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 300;
  color: var(--primary-600);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  font-weight: 400;
}

/* Правая часть — фото */
.hero-right {
  position: relative;
  width: 50%;
  margin-left: -5%;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Прогресс-бар слайдера */
.hero-progress {
  position: absolute;
  bottom: 32px;
  left: 120px;
  right: 48px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.hero-progress-bar {
  width: 40%;
  height: 100%;
  background: var(--primary-600);
  border-radius: 2px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-left {
    width: 100%;
    padding: 48px 24px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    width: 100%;
    margin-left: 0;
    height: 320px;
  }

  .hero-image-wrapper {
    clip-path: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    padding-right: 0;
    min-width: 140px;
  }

  .hero-progress {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 639px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .hero-right {
    height: 240px;
  }
}

/* Stats */
.stats-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 896px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  padding: 4px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 30px;
  }
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: white;
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  padding: 10px 0;
}

.marquee-dark {
  background: var(--primary-600);
}

.marquee-light {
  background: #f3f4f6;
}

.marquee-blue {
  background: var(--primary-700);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-slow {
  animation-duration: 45s;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 10px;
  font-weight: 600;
  margin: 0 24px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .marquee-item {
    font-size: 14px;
  }
}

.marquee-gray {
  color: #d1d5db;
}

.marquee-sep {
  margin-left: 24px;
  opacity: 0.3;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 50px 0;
}



.section-white {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.section-gray {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-left {
  text-align: left;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-desc {
  color: #64748b;
  max-width: 576px;
  margin: 16px auto 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header-left .section-desc {
  margin-left: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.about-text {
  margin-bottom: 32px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 16px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 16px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 24px 0;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.values-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.values-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-900);
  flex-shrink: 0;
}

.values-title {
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.values-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

/* Welcome Card */
.welcome-card {
  height: 100%;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.welcome-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-top: 4px solid var(--gold-500);
  border-right: 4px solid var(--gold-500);
}

.welcome-badge {
  display: inline-flex;
  background: var(--primary-800);
  color: white;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.welcome-title {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.welcome-text {
  font-size: 12px;
  color: #475569;
  line-height: 1.6;
}

.welcome-text p {
  margin-bottom: 12px;
}

.welcome-footer {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.welcome-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 180px;
    height: auto;
  background: #d1d5db;
  border: 1px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.author-name {
  color: var(--primary-700);
  font-weight: 800;
  font-size: 14px;
}

.author-role {
  color: #64748b;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.reception-info {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 12px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Capabilities */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.capability-card {
  background: white;
  padding: 24px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  border-left: 4px solid var(--primary-600);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.capability-card:hover {
  background: #f8fafc;
}

.capability-gold {
  border-left-color: var(--gold-500);
}

.capability-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.capability-card:hover .capability-icon {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.capability-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.capability-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.capability-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-600);
  opacity: 0;
  transition: opacity 0.3s;
}

.capability-card:hover .capability-more {
  opacity: 1;
}

/* ===== NEWS ===== */
.news-featured {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 24px;
  cursor: pointer;
  border-left: 4px solid var(--primary-700);
}

@media (min-width: 768px) {
  .news-featured {
    flex-direction: row;
  }
}

.news-featured-graphic {
  position: relative;
  background: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-featured-graphic {
    width: 33.333%;
  }
}

.news-graphic-content {
  text-align: center;
      position: relative;
    height: 100%;
    width: 100%;
}
.news-graphic-content img{
      object-fit: cover;
    height: 100%;
    width: 100%;
}
.news-graphic-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-weight: 800;
  font-size: 24px;
}

.news-graphic-label {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.news-graphic-sub {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.news-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-600);
  color: white;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-featured-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .news-featured-content {
    padding: 32px;
  }
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-tag {
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== NEWS LAYOUT WITH SIDEBAR ===== */
.news-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .news-layout {
    grid-template-columns: 1fr 320px;
  }
}

.news-main {
  min-width: 0;
}

/* ===== SIDEBAR BANNERS ===== */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner-card {
  position: relative;
  display: block;
  background: white;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,24,69,0.12);
  border-color: var(--primary-600);
}

.banner-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,60,147,0.85) 0%, rgba(0,60,147,0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.banner-card:hover .banner-card-bg {
  opacity: 1;
}

.banner-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner-card:hover .banner-img {
  transform: scale(1.05);
}

.banner-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.3s;
}

.banner-text {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s;
}

.banner-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--primary-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  z-index: 3;
}

.banner-card:hover .banner-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Banner variants */
.banner-card-primary {
  background: #002f75;
  border-color: #002f75;
}

.banner-card-primary .banner-title {
  color: #f8fafc;
}

.banner-card-primary .banner-text {
  color: rgba(248,250,252,0.75);
}

.banner-card-primary .banner-arrow {
  background: #c9a96e;
  color: #001845;
}

.banner-card-primary:hover {
  border-color: #003c93;
  background: #003c93;
}

.banner-card-primary:hover .banner-title {
  color: #ffffff;
}

.banner-card-primary:hover .banner-text {
  color: rgba(255,255,255,0.9);
}

.banner-card-secondary {
  background: #475569;
  border-color: #475569;
}

.banner-card-secondary .banner-title {
  color: #f1f5f9;
}

.banner-card-secondary .banner-text {
  color: rgba(241,245,249,0.75);
}

.banner-card-secondary .banner-arrow {
  background: #94a3b8;
  color: #f8fafc;
}

.banner-card-secondary:hover {
  border-color: #52647a;
  background: #52647a;
}

.banner-card-secondary:hover .banner-title {
  color: #ffffff;
}

.banner-card-secondary:hover .banner-text {
  color: rgba(255,255,255,0.9);
}

.banner-card-emerald {
  background: #5a6b5e;
  border-color: #5a6b5e;
}

.banner-card-emerald .banner-title {
  color: #f8fafc;
}

.banner-card-emerald .banner-text {
  color: rgba(248,250,252,0.8);
}

.banner-card-emerald .banner-phone {
  font-size: 16px;
  font-weight: 800;
  color: #d4e4d7;
  margin-top: 10px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.banner-card-emerald .banner-date {
  font-size: 10px;
  color: #b8c9bb;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.banner-card-emerald .banner-arrow {
  background: #8daa93;
  color: #2d3b30;
}

.banner-card-emerald:hover {
  border-color: #687a6c;
  background: #687a6c;
}

.banner-card-emerald:hover .banner-title {
  color: #ffffff;
}

.banner-card-emerald:hover .banner-text {
  color: rgba(255,255,255,0.9);
}

.banner-card-emerald:hover .banner-phone {
  color: #ffffff;
}

.banner-card-emerald:hover .banner-date {
  color: rgba(255,255,255,0.85);
}

.banner-card-cyan {
  background: #4a6670;
  border-color: #4a6670;
}

.banner-card-cyan .banner-title {
  color: #f8fafc;
}

.banner-card-cyan .banner-text {
  color: rgba(248,250,252,0.8);
}

.banner-card-cyan .banner-arrow {
  background: #8aaab8;
  color: #f8fafc;
}

.banner-card-cyan:hover {
  border-color: #587480;
  background: #587480;
}

.banner-card-cyan:hover .banner-title {
  color: #ffffff;
}

.banner-card-cyan:hover .banner-text {
  color: rgba(255,255,255,0.9);
}

.banner-card-bordered {
  border: 2px solid #b8a88a;
  background: #faf8f5;
}

.banner-card-bordered:hover {
  border-color: #a6987a;
  background: #f5f2ec;
}

.banner-card-bordered:hover .banner-title {
  color: #001845;
}

.banner-card-bordered:hover .banner-text {
  color: #475569;
}

/* Image banners hover text fix */
.banner-card:not(.banner-card-primary):not(.banner-card-secondary):not(.banner-card-emerald):not(.banner-card-cyan) .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,24,69,0.9) 0%, rgba(0,24,69,0.6) 60%, transparent 100%);
  padding: 24px 16px 16px;
}

.banner-card:not(.banner-card-primary):not(.banner-card-secondary):not(.banner-card-emerald):not(.banner-card-cyan) .banner-title {
  color: white;
  font-size: 12px;
}

.banner-card:not(.banner-card-primary):not(.banner-card-secondary):not(.banner-card-emerald):not(.banner-card-cyan) .banner-text {
  color: rgba(255,255,255,0.8);
  font-size: 10px;
}

.banner-card:not(.banner-card-primary):not(.banner-card-secondary):not(.banner-card-emerald):not(.banner-card-cyan):hover .banner-title {
  color: #ffffff;
}

.banner-card:not(.banner-card-primary):not(.banner-card-secondary):not(.banner-card-emerald):not(.banner-card-cyan):hover .banner-text {
  color: rgba(255,255,255,0.95);
}

/* Reveal animation */
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive sidebar */
@media (max-width: 1023px) {
  .news-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .banner-img {
    height: 120px;
  }
}

@media (max-width: 639px) {
  .news-sidebar {
    grid-template-columns: 1fr;
  }
  
  .banner-img {
    height: 160px;
  }
}

.tag-blue {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.tag-amber {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.tag-emerald {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.tag-red {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.tag-purple {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #e9d5ff;
}

.tag-teal {
  background: #ccfbf1;
  color: #115e59;
  border: 1px solid #99f6e4;
}

.news-date, .news-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

.news-featured-title {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.3s;
}

.news-featured:hover .news-featured-title {
  color: var(--primary-600);
}

.news-featured-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.news-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.news-readmore:hover {
  color: var(--primary-700);
}

.news-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.news-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-700);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,24,69,0.1);
}

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .news-card-title {
  color: var(--primary-600);
}

.news-card-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .team-card {
    flex-direction: row;
  }
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,24,69,0.12);
}


.team-graphic-label {
  color: var(--primary-800);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-graphic-sub {
  color: #9ca3af;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.team-badge {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 2px 8px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--primary-900);
}

.badge-secondary {
  background: #374151;
}

.team-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-name {
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.team-position {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.team-details {
  font-size: 12px;
  color: #475569;
}

.team-details p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.team-reception {
  font-weight: 600;
  color: #334155;
}

.team-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.3s;
}

.team-phone:hover {
  background: #f1f5f9;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
}

.team-link:hover {
  color: var(--primary-700);
}

.team-link svg {
  transition: transform 0.3s;
}

.team-link:hover svg {
  transform: translateX(4px);
}

/* ===== ORGANIZATIONS ===== */
.org-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  overflow: visible;
}

@media (min-width: 640px) {
  .org-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .org-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .org-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.org-card {
  position: relative;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  overflow: visible;
  transition: all 0.3s ease;
  z-index: 1;
  transform-origin: center center;
}

.org-card:hover {
  border-color: var(--primary-600);
  box-shadow: 0 8px 30px rgba(0,60,147,0.15);
  z-index: 100;
  transform: scale(1.03);
}

.org-number {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #64748b;
  flex-shrink: 0;
  transition: all 0.3s;
}

.org-card:hover .org-number {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.org-info {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.org-name {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
  margin-bottom: 0;
}

.org-card:hover .org-name {
  color: var(--primary-600);
}

/* Hidden info block - appears on hover with absolute positioning */
/* This ensures it doesn't affect grid cell height */
.org-info-op {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  right: -20px;
  background: white;
  border: 1px solid var(--primary-600);
  border-radius: 4px;
  padding: 12px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.98);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,60,147,0.12);
  z-index: 200;
  pointer-events: none;
}

.org-card:hover .org-info-op {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.org-predsed {
  font-size: 11px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.org-address {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 4px;
}

.org-phone {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-600);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.org-phone:hover {
  color: var(--primary-700);
}

.org-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.org-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.org-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
  flex-shrink: 0;
  margin-top: 12px;
}

.org-card:hover .org-arrow {
  opacity: 1;
  transform: translateX(0);
}

.org-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-600);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.org-card:hover .org-line {
  transform: scaleX(1);
}

/* Org Info Box */
.org-info-box {
  margin-top: 48px;
  background: white;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .org-info-box {
    padding: 32px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.org-info-content {
  flex: 1;
}

.org-info-title {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--primary-600);
  padding-left: 12px;
  margin-bottom: 8px;
}

.org-info-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}
/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contacts-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #f8fafc;
  padding: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--primary-600);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-800);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-900);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-details p, .contact-details a {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--primary-600);
}

.contact-phones p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.contact-phones span {
  color: #94a3b8;
  font-weight: 500;
}

.contact-break {
  color: #94a3b8 !important;
  font-weight: 700 !important;
}

/* Contacts Right */
.contacts-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-box {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
}

.form-icon {
  width: 32px;
  height: 32px;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-header h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-600);
  background: white;
}

.form-group textarea {
  resize: none;
}

/* Map Box */
.map-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 16px;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.map-header h4 {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-container {
  aspect-ratio: 16/6;
  background: white;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-container-real {
  aspect-ratio: 16/9;
  background: white;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.map-container-real iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    linear-gradient(#000 1px, transparent 1px),
    linear-gradient(90deg, #000 1px, transparent 1px);
  background-size: 15px 15px;
}

.map-marker {
  text-align: center;
  position: relative;
}

.marker-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-800);
  border: 1px solid var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.marker-address {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marker-city {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Bank Details */
.bank-details {
  margin-top: 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bank-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-800);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-900);
  flex-shrink: 0;
}

.bank-content {
  flex: 1;
}

.bank-content h4 {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 48px;
}

@media (min-width: 768px) {
  .bank-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bank-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bank-col p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding-bottom: 4px;
}

.bank-col span:first-child {
  color: #94a3b8;
  font-weight: 500;
}

.bank-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #1e293b;
}


/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.partner-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.partner-card:hover {
  border-color: var(--primary-600);
  box-shadow: 0 8px 25px rgba(0,24,69,0.08);
  transform: translateY(-2px);
}

.partner-logo {
  width: 80px;
  height: 80px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  transition: all 0.3s;
}

.partner-card:hover .partner-logo {
  border-color: var(--primary-600);
  background: #f0f4fa;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(0.3);
  transition: filter 0.3s;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0);
}

.partner-info {
  flex: 1;
  min-width: 0;
}

.partner-name {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.partner-card:hover .partner-name {
  color: var(--primary-600);
}

.partner-desc {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s;
}

.partner-card:hover .partner-desc {
  color: #64748b;
}

.partner-arrow {
  color: #cbd5e1;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary-600);
}

/* Bottom accent line on hover */
.partner-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-600);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.partner-card:hover::after {
  transform: scaleX(1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-900);
  color: white;
  overflow: hidden;
  border-top: 4px solid var(--gold-500);
  position: relative;
}

.back-to-top {
  display: flex;
  justify-content: flex-end;
  margin-top: -16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.back-to-top-btn {
  width: 40px;
  height: 40px;
  background: var(--gold-500);
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-600);
  text-decoration: none;
  transition: all 0.3s;
}

.back-to-top-btn:hover {
  background: var(--gold-600);
  transform: translateY(-4px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

.footer-logo-title {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.footer-logo-sub {
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-external {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-external a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-external a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.footer-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  border-left: 2px solid var(--gold-500);
  padding-left: 8px;
}

.footer-nav ul,
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: white;
}

.footer-nav a span,
.footer-links a span {
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  display: block;
}

.footer-links a span {
  background: var(--primary-600);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: white;
}

.footer-values {
  padding: 24px 0 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-values {
    gap: 32px;
  }
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 48px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #64748b;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .partners-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* First row has 2 items - center them */
.partners-row:first-child {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* Last row has 3 items */
.partners-row:last-child {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.partner-card:hover {
  border-color: var(--primary-600);
  box-shadow: 0 8px 25px rgba(0,60,147,0.1);
  transform: translateY(-3px);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
}

.partner-name {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: var(--primary-600);
}

@media (max-width: 639px) {
  .partners-row,
  .partners-row:first-child,
  .partners-row:last-child {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .partner-logo {
    height: 60px;
  }

  .partner-card {
    padding: 16px 12px;
  }

  .partner-name {
    font-size: 10px;
  }
}