:root {
  --bg-main: #050a14;
  --bg-deep: #050a14;
  --bg-section: #0a140d;
  --bg-khaki: #2d2e1c;
  
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  
  --accent-gold: #d4af37;
  --accent-olive: #556b2f;
  --accent-silver: #c0c0c0;
  --accent-khaki: #8b864e;
  
  --ru-white: #ffffff;
  --ru-blue: #0033a0;
  --ru-red: #da291c;
  
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f2d388 50%, #d4af37 100%);
  --military-gradient: linear-gradient(135deg, #1a2a1a 0%, #050a05 100%);
  --tricolor-gradient-vert: linear-gradient(to bottom, #ffffff 0%, #ffffff 33%, #0033a0 33%, #0033a0 66%, #da291c 66%, #da291c 100%);
  --tricolor-gradient-horz: linear-gradient(to right, #ffffff 0%, #ffffff 33%, #0033a0 33%, #0033a0 66%, #da291c 66%, #da291c 100%);
  
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-gold: rgba(212, 175, 55, 0.05);
  
  --container-max: 1440px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-user-select: auto;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  word-break: keep-all;
  hyphens: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #050810 0%, #0a0e16 100%);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 33%, #0033a0 33%, #0033a0 66%, #da291c 66%, #da291c 100%);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 33%, #0052d4 33%, #0052d4 66%, #ff3d2e 66%, #ff3d2e 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1440px) {
  .container { padding: 0 3rem; }
}

@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 0.5rem; }
}

a, p, span, li {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  word-break: keep-all;
  hyphens: none;
}

img {
  -webkit-user-drag: auto;
  -webkit-user-select: auto;
  user-select: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  -webkit-touch-callout: auto;
}

h1, h2, h3, h4 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.quote-section h2 {
  white-space: nowrap;
  overflow: visible;
}

@media (max-width: 1024px) {
  .quote-section h2 {
    white-space: normal;
  }
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tricolor-line {
  height: 4px;
  width: 100px;
  background: var(--tricolor-gradient-vert);
  margin: 1.5rem 0;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== РђРќРРњРђР¦РР ===== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(218, 41, 28, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(218, 41, 28, 0.8));
  }
}

@keyframes rotateFlag {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes patrioticPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* РџСЂРёРјРµРЅРµРЅРёРµ Р°РЅРёРјР°С†РёР№ Рє СЌР»РµРјРµРЅС‚Р°Рј */
header {
  animation: slideInDown 0.6s ease forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--accent-khaki);
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  width: 100%;
}

@media (max-width: 768px) {
  .nav-container {
    gap: 0.3rem;
  }

  .glass-card div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  animation: slideInLeft 0.8s ease;
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  animation: float 4s ease-in-out infinite;
}

.nav-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1000px) {
  .nav-logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 40px;
  }
  .nav-logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 650px) {
  .nav-logo-text {
    display: none;
  }
  .nav-logo img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 32px;
  }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 10, 20, 0.98);
    gap: 0.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid var(--accent-khaki);
    z-index: 999;
    width: 100%;
    visibility: hidden;
  }
  .nav-links.active {
    max-height: 600px;
    padding: 1rem 1.5rem;
    visibility: visible;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
  position: relative;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: slideInUp 0.6s ease backwards;
}

.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.2s; }
.nav-links a:nth-child(3) { animation-delay: 0.3s; }
.nav-links a:nth-child(4) { animation-delay: 0.4s; }
.nav-links a:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 900px) {
  .nav-links a {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    font-size: 0.9rem;
    white-space: normal;
    padding: 0.4rem 0;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.85rem;
  }
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--accent-gold);
}

.nav-links a:last-child {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--accent-gold);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  opacity: 1;
}

.nav-links a:last-child:hover {
  background: var(--accent-gold);
  -webkit-text-fill-color: var(--bg-deep);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 33%, #0033a0 33%, #0033a0 66%, #da291c 66%, #da291c 100%);
  transition: var(--transition-fast);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-links a:last-child::after {
  display: none;
}

.lang-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.8s ease;
}

.lang-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.lang-btn:hover {
  border-color: #f2d388;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.lang-btn:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .lang-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 600px) {
  .lang-btn {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
  }
}

.lang-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0.7rem 2rem 0.7rem 1.2rem;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23d4af37" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7 7l3 3 3-3" stroke="%23d4af37" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1.4em;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.lang-select:hover,
.lang-select:focus {
  border-color: #f2d388;
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  outline: none;
}

.lang-select option {
  background-color: var(--bg-deep);
  color: var(--accent-gold);
  padding: 1rem;
  font-weight: 600;
  border: 1px solid var(--accent-khaki);
}

.lang-select option:checked {
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-gold));
  color: var(--bg-deep);
  font-weight: 800;
}

@media (max-width: 768px) {
  .lang-select {
    font-size: 0.7rem;
    padding: 0.6rem 1.8rem 0.6rem 1rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 600px) {
  .lang-select {
    font-size: 0.65rem;
    padding: 0.5rem 1.5rem 0.5rem 0.8rem;
    letter-spacing: 0.8px;
  }
}

.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    margin-top: 60px;
    padding: 2rem 0;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 450px;
    margin-top: 50px;
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 400px;
    margin-top: 45px;
    padding: 1rem 0;
  }
}

@media (max-width: 380px) {
  .hero-section {
    min-height: 350px;
    margin-top: 40px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2) grayscale(0.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-deep) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 3rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    gap: 1.5rem;
    flex-direction: column;
  }
}

.hero-content > div:first-child {
  flex: 1;
  min-width: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  animation: slideInLeft 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.2rem;
  background: rgba(85, 107, 47, 0.2);
  border-left: 4px solid var(--ru-red);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease 0.2s backwards;
}

@media (max-width: 600px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
    gap: 6px;
    margin-bottom: 1rem;
  }
}

.hero h1 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  position: relative;
  z-index: 1;
  max-width: 100%;
  animation: slideInUp 0.8s ease 0.3s backwards;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.3rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
  }
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 650px;
  border-left: 1px solid var(--glass-border);
  padding-left: 1.5rem;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: normal;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease 0.4s backwards;
}

@media (max-width: 1024px) {
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-left: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero p {
    font-size: 0.9rem;
    border-left: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .hero p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
  animation: slideInUp 0.8s ease 0.5s backwards;
}

@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-deep);
  padding: 1.2rem 3.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  border: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  min-height: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
  animation: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  padding: 1.2rem 3.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
  border: 1px solid var(--accent-khaki);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  white-space: nowrap;
  box-sizing: border-box;
  min-height: 3rem;
}

.btn-outline:hover {
  background: var(--accent-khaki);
  color: white;
}

@media (max-width: 900px) {
  .btn-primary, .btn-outline {
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .btn-primary, .btn-outline {
    padding: 0.95rem 1.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .btn-primary, .btn-outline {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .btn-primary, .btn-outline {
    font-size: 0.7rem;
    padding: 0.8rem 0.8rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 380px) {
  .btn-primary, .btn-outline {
    font-size: 0.65rem;
    padding: 0.7rem 0.6rem;
    min-height: 40px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 8rem;
  padding: 0 1rem;
  box-sizing: border-box;
  animation: slideInUp 0.8s ease;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .section-header {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  .section-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 380px) {
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header h2 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
}

.section-subtitle {
  color: var(--accent-khaki);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  animation: slideInUp 0.6s ease 0.2s backwards;
}

@media (max-width: 600px) {
  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.grid-2-resp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid-2-resp { gap: 2rem; }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2-resp { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .grid-2-resp { grid-template-columns: 1fr; gap: 1.5rem; }
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(139, 134, 78, 0.2);
  padding: 4rem 3rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  animation: slideInUp 0.8s ease backwards;
}

.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.3s; }

.glass-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-gold);
  background: rgba(139, 134, 78, 0.05);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #da291c, #0033a0, #ffffff, #da291c);
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover::before {
  opacity: 0.5;
}

.card-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 1024px) {
  .glass-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.5rem;
  }
  .card-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .glass-card {
    padding: 1.5rem 1rem;
  }
  .card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .card-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  .card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 1.2rem 0.8rem;
  }
  .card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  .card-title {
    font-size: 0.95rem;
  }
  .card-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .glass-card {
    padding: 1rem 0.7rem;
  }
  .card-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .card-title {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  .card-text {
    font-size: 0.75rem;
  }
}

footer {
  background: #020508;
  padding: 10rem 0 4rem;
  border-top: 1px solid var(--accent-olive);
  width: 100%;
}

@media (max-width: 768px) {
  footer {
    padding: 5rem 0 2rem;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 3rem 0 1.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 8rem;
  animation: fadeIn 1s ease;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
}

@media (max-width: 600px) {
  .footer-grid { gap: 1.5rem; margin-bottom: 2rem; }
}

.footer-col h4 {
  color: var(--accent-silver);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footer-col p {
    font-size: 0.8rem;
  }
}

.footer-links li {
  list-style: none;
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 10px;
}

@media (max-width: 600px) {
  .footer-links a {
    font-size: 0.85rem;
  }
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 3px solid white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 800;
  font-size: 0.8rem;
  background: rgba(139, 134, 78, 0.05);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--accent-khaki);
  animation: patrioticPulse 2s ease-in-out infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.4s; }

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--accent-khaki);
  border-color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 2px var(--accent-gold);
  animation: none;
}

.social-icon span {
  transition: var(--transition-fast);
}

.social-icon:hover span {
  transform: none;
}

@media (max-width: 600px) {
  .social-icon {
    width: 44px;
    height: 44px;
    border-width: 2.5px;
    box-shadow: 0 0 0 1px var(--accent-khaki);
  }
  .social-icon svg {
    width: 24px;
    height: 24px;
  }
  .social-icon img {
    width: 24px;
    height: 24px;
  }
}

.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 1px;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-bottom > div {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    padding-top: 2rem;
    gap: 1rem;
  }
}

.news-feed {
  display: grid;
  gap: 4rem;
}

@media (max-width: 768px) {
  .news-feed {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .news-feed {
    gap: 1.5rem;
  }
}

.news-card {
  display: grid;
  grid-template-columns: minmax(300px, 450px) 1fr;
  gap: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(139, 134, 78, 0.03) 100%);
  border: 1px solid rgba(139, 134, 78, 0.2);
  overflow: hidden;
  box-sizing: border-box;
  animation: slideInUp 0.8s ease backwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 1200px) {
  .news-card { grid-template-columns: 350px 1fr; }
}

@media (max-width: 1024px) {
  .news-card { grid-template-columns: 300px 1fr; }
}

@media (max-width: 768px) {
  section[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  section[style*="padding: 12rem"],
  section[style*="padding: 10rem"],
  section[style*="padding: 5rem"] {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  section[style*="min-height: 100vh"] {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }

  .glass-card div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  main[style*="padding-top: 150px"] {
    padding-top: 100px !important;
  }

.news-img-container {
  height: 100%;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

@media (max-width: 768px) {
  .news-img-container {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .news-img-container {
    min-height: 200px;
  }
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.news-card:hover .news-img {
  transform: scale(1.1);
}

.news-content {
  padding: 4rem;
  border-left: 1px solid rgba(139, 134, 78, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .news-content {
    padding: 2rem;
    border-left: none;
    border-top: 1px solid rgba(139, 134, 78, 0.1);
  }
}

@media (max-width: 600px) {
  .news-content {
    padding: 1.5rem 1rem;
  }
}

.vk-post-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .vk-post-header {
    padding: 1rem 0.8rem;
    gap: 0.8rem;
  }
}

.vk-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  min-width: 50px;
  background: linear-gradient(135deg, #da291c, #0033a0, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--bg-deep);
  animation: patrioticPulse 2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .vk-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.85rem;
  }
}

.vk-post-body {
  padding: 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .vk-post-body {
    padding: 1.2rem 0.8rem;
  }
}

.vk-post-body h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 600px) {
  .vk-post-body h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
}

.vk-post-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 600px) {
  .vk-post-body p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

.vk-post-media {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.vk-post-media img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  animation: slideInUp 0.8s ease;
}

.vk-post-card {
  display: block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.vk-post-header-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.vk-post-author {
  font-weight: 700;
  color: var(--text-main);
  word-break: keep-all;
}

.vk-post-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vk-post-badge {
  color: var(--ru-blue);
  font-weight: 800;
  flex-shrink: 0;
  animation: glow 2s ease-in-out infinite;
}

.vk-read-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  min-height: auto;
  text-decoration: none;
}

.vk-post-body h3 {
  color: var(--accent-gold);
}

.vk-post-footer {
  justify-content: flex-start;
}

.vk-post-footer {
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .vk-post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .vk-post-footer {
    padding: 0.8rem;
    gap: 0.8rem;
  }
}

.news-tag {
  background: var(--ru-blue);
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 2rem;
  animation: slideInLeft 0.6s ease;
}

@media (max-width: 600px) {
  .news-tag {
    padding: 0.3rem 0.7rem;
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  animation: slideInRight 0.6s ease;
}

.menu-toggle span {
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

.video-bg-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(5, 10, 20, 0.4) 0%, rgba(5, 10, 20, 0.8) 100%);
  backdrop-filter: blur(1px);
  z-index: 0;
}

.drone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .drone-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .drone-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.drone-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  overflow: hidden;
  box-sizing: border-box;
  animation: slideInUp 0.8s ease backwards;
  position: relative;
}

.drone-card:nth-child(1) { animation-delay: 0.1s; }
.drone-card:nth-child(2) { animation-delay: 0.2s; }
.drone-card:nth-child(3) { animation-delay: 0.3s; }

.drone-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #da291c, #0033a0, #ffffff, #da291c);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drone-card:hover::after {
  opacity: 1;
}

.drone-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.drone-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.drone-card h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  word-break: keep-all;
  overflow-wrap: normal;
}

.drone-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 768px) {
  .drone-card {
    padding: 1.5rem;
  }
  .drone-card img {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .drone-card {
    padding: 1rem;
  }
  .drone-card img {
    height: 100px;
    margin-bottom: 0.8rem;
  }
  .drone-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  .drone-card p {
    font-size: 0.8rem;
  }
}

.hero-drone {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  animation: slideInRight 0.8s ease;
}

.hero-drone img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 1200px) {
  .hero-drone {
    max-width: 350px;
  }
}

@media (max-width: 1024px) {
  .hero-drone {
    max-width: 300px;
  }
  .hero-drone img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-drone {
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
  }
  .hero-drone img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-drone {
    max-width: 200px;
  }
  .hero-drone img {
    border-width: 1.5px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
}

@media (max-width: 480px) {
  .hero-drone {
    max-width: 160px;
  }
}

@media (max-width: 380px) {
  .hero-drone {
    max-width: 140px;
  }
  .hero-drone img {
    border-width: 1px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }
}

/* Contacts Page */
.page-contacts {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg-main);
}

@media (max-width: 768px) {
  .page-contacts {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .page-contacts {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.contacts-grid {
  gap: 4rem;
}

@media (max-width: 768px) {
  .contacts-grid {
    gap: 2rem;
  }
}

.contact-form-card {
  padding: 3rem;
  animation: slideInLeft 0.8s ease;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 1.2rem;
  }
}

.contact-form-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .contact-form-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: slideInUp 0.6s ease backwards;
}

.contact-field:nth-child(1) { animation-delay: 0.1s; }
.contact-field:nth-child(2) { animation-delay: 0.2s; }
.contact-field:nth-child(3) { animation-delay: 0.3s; }

.contact-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 4px;
  color: white;
  outline: none;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
  word-break: keep-all;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  padding: 1.2rem;
  letter-spacing: 2px;
  width: 100%;
  animation: slideInUp 0.6s ease 0.4s backwards;
}

.contact-form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-info-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: slideInRight 0.8s ease;
}

@media (max-width: 768px) {
  .contact-info-inner {
    gap: 2rem;
  }
}

.contact-divider {
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin-bottom: 1rem;
  animation: slideInRight 0.6s ease;
}

.contact-label {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.contact-phone {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  display: block;
  word-break: keep-all;
  animation: slideInUp 0.6s ease 0.1s backwards;
}

.contact-email {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  word-break: keep-all;
  animation: slideInUp 0.6s ease 0.2s backwards;
}

.contact-schedule,
.contact-address {
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
  word-break: keep-all;
  animation: slideInUp 0.6s ease 0.3s backwards;
}

.contact-address {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.contact-address-note {
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-social-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .contact-social-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

.contact-social-title {
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.contact-social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-social-icon {
  width: 60px;
  height: 60px;
  border-width: 2px;
  animation: patrioticPulse 2s ease-in-out infinite;
}

.contact-social-icon:nth-child(1) { animation-delay: 0s; }
.contact-social-icon:nth-child(2) { animation-delay: 0.2s; }
.contact-social-icon:nth-child(3) { animation-delay: 0.4s; }

.contact-social-icon img {
  width: 32px;
  height: 32px;
}

@media (max-width: 480px) {
  .contact-social-icon {
    width: 52px;
    height: 52px;
  }
  .contact-social-icon img {
    width: 28px;
    height: 28px;
  }
}

.contact-map {
  margin-top: 4rem;
  animation: slideInUp 0.8s ease;
}

@media (max-width: 768px) {
  .contact-map {
    margin-top: 2.5rem;
  }
}

.contact-map-card {
  height: 450px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  position: relative;
}

.contact-map-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(218, 41, 28, 0.1), rgba(0, 51, 160, 0.1));
  pointer-events: none;
  z-index: 1;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-map-card {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .contact-field input,
  .contact-field textarea {
    font-size: 16px;
    padding: 0.9rem;
  }
}

/* Patriotic Elements - Р¤Р›РђР“ Р Р¤ */
.flag-decoration {
  position: fixed;
  top: 50%;
  right: 0;
  width: 8px;
  height: 120px;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 33%, #0033a0 33%, #0033a0 66%, #da291c 66%, #da291c 100%);
  border-radius: 4px 0 0 4px;
  opacity: 0.3;
  z-index: 999;
  animation: slideInRight 1s ease;
}

.flag-decoration:hover {
  opacity: 0.7;
  width: 16px;
}

/* Р‘РџР›Рђ СЌР»РµРјРµРЅС‚ */
.drone-decoration {
  position: fixed;
  top: 80px;
  right: 20px;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  z-index: 500;
}

/* Patriotic Stars */
.patriotic-star {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #da291c, #0033a0);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin: 0 2px;
  animation: patrioticPulse 1.5s ease-in-out infinite;
}

/* ===== ПОЛНАЯ АДАПТИВНОСТЬ ===== */

/* Мобильные устройства <= 380px */
@media (max-width: 380px) {
  body { font-size: 10px; }
  .container { padding: 0 0.5rem; }
  main { padding-top: 60px !important; padding-bottom: 20px !important; }
  header { padding: 0.5rem 0; }
  .nav-logo-text { display: none; }
  .glass-card { padding: 0.8rem 0.5rem; }
  .section-header { margin-bottom: 1.5rem; }
  .hero-section { margin-top: 35px; }
  .btn-primary, .btn-outline { min-height: 44px; width: 100%; }
}

/* Мобильные устройства 380-480px */
@media (max-width: 480px) and (min-width: 381px) {
  body { font-size: 11px; }
  .container { padding: 0 0.75rem; }
  main { padding-top: 70px !important; padding-bottom: 30px !important; }
  h1, h2, h3, h4 { font-size: 0.9em; }
  header { padding: 0.75rem 0; }
  .glass-card { padding: 1rem 0.75rem; }
  .grid-3 { gap: 0.8rem; }
  .btn-primary, .btn-outline { width: 100%; }
}

/* Мобильные устройства 480-600px */
@media (max-width: 600px) and (min-width: 481px) {
  body { font-size: 12px; overflow-x: hidden; }
  .container { padding: 0 1rem; }
  main { padding-top: 80px !important; padding-bottom: 40px !important; }
  h1, h2, h3, h4 { font-size: 0.95em; }
  .glass-card { padding: 1.5rem 1rem; }
  .grid-3 { gap: 1rem; }
  .btn-primary, .btn-outline { width: 100%; }
  .hero-section { min-height: 400px; }
  .news-img-container { min-height: 150px; }
}

/* Планшеты 600-768px */
@media (max-width: 768px) and (min-width: 601px) {
  body { font-size: 13px; }
  .container { padding: 0 1.5rem; }
  main { padding-top: 100px !important; padding-bottom: 60px !important; }
  .glass-card { padding: 2rem 1.5rem; }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .grid-2-resp { grid-template-columns: 1fr; }
  .hero-section { min-height: 500px; }
}

/* Планшеты 768-1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  body { font-size: 14px; }
  .container { padding: 0 2rem; }
  h1, h2, h3, h4 { letter-spacing: 0.08em; }
  .glass-card { padding: 3rem 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .news-card { grid-template-columns: 300px 1fr; }
}

/* Малые десктопы 1024-1200px */
@media (max-width: 1200px) and (min-width: 1025px) {
  body { font-size: 14px; }
  .container { padding: 0 2.5rem; }
  .news-card { grid-template-columns: 300px 1fr; }
}

/* Большие десктопы >= 1200px */
@media (min-width: 1201px) {
  body { font-size: 15px; }
  .container { padding: 0 3rem; }
}

/* Экширокие мониторы >= 1920px */
@media (min-width: 1920px) {
  .container { max-width: 1920px; padding: 0 4rem; }
  .glass-card { padding: 4rem 3rem; }
}

/* ===== ТЕКСТ НА МОБИЛЬНЫХ ===== */
@media (max-width: 600px) {
  p, span, a, li { word-break: break-word; line-height: 1.5; }
  h1, h2, h3 { word-break: break-word; overflow-wrap: break-word; }
}

/* ===== КАРТИНКИ И МЕДИА ===== */
@media (max-width: 600px) {
  img { max-width: 100%; height: auto; display: block; }
  .hero-drone { max-width: 150px; }
  .news-img-container { min-height: 120px; }
  .drone-card img { height: 60px; }
}

/* ===== ФЛЕКС И ГРИДЫ АДАПТИВНЫЕ ===== */
@media (max-width: 768px) {
  .nav-container { flex-wrap: wrap; }
  .nav-links { position: absolute; top: 100%; }
  .social-icons { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .drone-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .cta-group { flex-direction: column; }
}

@media (max-width: 600px) {
  .nav-container { justify-content: space-between; }
  .social-icons { gap: 0.8rem; }
  .drone-grid { grid-template-columns: 1fr; }
  .contact-form { gap: 1rem; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .cta-group { gap: 0.5rem; }
}

/* ===== КНОПКИ И ИНТЕРАКТИВНЫЕ ЭЛЕМЕНТЫ ===== */
@media (max-width: 600px) {
  .btn-primary, .btn-outline, .contact-submit { width: 100%; min-height: 48px; }
  .btn-primary:active, .btn-outline:active { opacity: 0.8; }
}

/* ===== АНИМАЦИИ НА МОБИЛЬНЫХ ===== */
@media (max-width: 600px) {
  * { animation-duration: 0.3s !important; }
  .reveal { animation-duration: 0.6s !important; }
}

/* ===== УВАЖЕНИЕ К ПРЕДПОЧТЕНИЯМ ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ===== СЕНСОРНЫЕ УСТРОЙСТВА ===== */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover { transform: scale(1.02); }
  .glass-card:hover { transform: translateY(-3px); }
  .social-icon:hover { transform: scale(1.05); }
  a:active { opacity: 0.7; }
}

/* ===== ФОКУС НА КЛАВИАТУРЕ ===== */
@media (pointer: fine) {
  button:focus, a:focus, input:focus, textarea:focus { outline: 2px solid var(--accent-gold); outline-offset: 2px; }
}

/* ===== НОЧНОЙ РЕЖИМ ===== */
@media (prefers-color-scheme: dark) {
  body { color-scheme: dark; }
  .contact-field input, .contact-field textarea { color-scheme: dark; }
}

/* ===== ЛАНДШАФТНАЯ ОРИЕНТАЦИЯ ===== */
@media (max-height: 500px) and (orientation: landscape) {
  header { padding: 0.5rem 0; }
  .hero-section { min-height: 300px; margin-top: 50px; }
  main { padding-top: 60px !important; }
}

/* ===== RETINA И HI-DPI ДИСПЛЕИ ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .tricolor-line { filter: blur(0.5px); }
  .nav-links a::after { box-shadow: 0 0 8px rgba(212, 175, 55, 0.3); }
}

/* ===== МИНИМАЛЬНЫЕ ВЫСОТЫ КНОПОК ДЛЯ A11Y ===== */
button, a.btn-primary, a.btn-outline, input[type='submit'] { min-height: 44px; }

@media (max-width: 768px) {
  button, a.btn-primary, a.btn-outline, input[type='submit'] { min-height: 48px; }
}

/* ===== ПОЛНАЯ ШИРИНА КОНТЕНТА ===== */
.contact-details-grid, .contact-info-inner, .contact-form, .glass-card { width: 100%; box-sizing: border-box; }

/* ===== ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ ===== */
@media (max-width: 600px) {
  .hidden-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

@media (min-width: 601px) {
  .show-mobile { display: none !important; }
}

/* ===== ШРИФТЫ И СТРОКИ ===== */
@media (max-width: 600px) {
  body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  p { margin: 0.5rem 0; }
  ul, ol { margin: 0.5rem 0; padding-left: 1.2rem; }
  li { margin-bottom: 0.3rem; }
}

/* ===== ТАБЛИЦЫ ===== */
@media (max-width: 600px) {
  table { font-size: 0.85em; }
  table th, table td { padding: 0.5rem; }
}

/* ===== ВАКАНСИИ АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
  .glass-card[style*="display: flex"][style*="gap: 2.5rem"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .glass-card[style*="display: flex"] img[style*="border-radius: 50%"] {
    width: 100px !important;
    height: 100px !important;
  }

  div[style*="display: flex"][style*="gap: 4rem"] {
    flex-direction: column !important;
    gap: 1rem !important;
  }
}

@media (max-width: 600px) {
  .glass-card[style*="display: flex"][style*="gap: 2.5rem"] {
    padding: 1.5rem !important;
  }

  .glass-card[style*="display: flex"] img[style*="border-radius: 50%"] {
    width: 80px !important;
    height: 80px !important;
  }
}

/* ===== КАРТОЧКИ ДРОНОВ С ИЗОБРАЖЕНИЯМИ ===== */
.drone-card img,
.glass-card img[alt*="дрон"],
.glass-card img[alt*="БПЛА"],
.glass-card img[alt*="ВТ-40"],
.glass-card img[alt*="КВН"],
.glass-card img[alt*="Скворец"],
.glass-card img[alt*="Бумеранг"],
.glass-card img[alt*="Молния"],
.glass-card img[alt*="Ланцет"],
.glass-card img[alt*="Герань"],
.glass-card img[alt*="Изделие"] {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .drone-card img,
  .glass-card img[alt*="дрон"],
  .glass-card img[alt*="БПЛА"] {
    height: 140px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .drone-card img,
  .glass-card img[alt*="дрон"],
  .glass-card img[alt*="БПЛА"] {
    height: 120px;
    margin-bottom: 0.8rem;
  }
}

/* ===== ПРОФИЛИ ОБУЧЕНИЯ ===== */
.glass-card img[style*="border-radius: 50%"][style*="width: 80px"],
.glass-card img[style*="border-radius: 50%"][style*="width: 70px"] {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover img[style*="border-radius: 50%"] {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .glass-card img[style*="border-radius: 50%"][style*="width: 80px"] {
    width: 60px !important;
    height: 60px !important;
  }

  .glass-card img[style*="border-radius: 50%"][style*="width: 70px"] {
    width: 50px !important;
    height: 50px !important;
  }
}

/* ===== FINAL RESPONSIVE SAFETY LAYER ===== */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: clip;
}

main,
section,
header,
footer,
.container,
.glass-card {
  min-width: 0;
}

main,
section {
  overflow-x: hidden;
}

a,
button,
input,
textarea,
select {
  max-width: 100%;
}

iframe,
video {
  max-width: 100%;
}

.lang-selector-desktop {
  display: flex;
  flex-shrink: 0;
}

.lang-selector-mobile {
  display: none;
  flex-shrink: 0;
}

.lang-select-desktop {
  appearance: none;
  cursor: pointer;
  padding: 0.65rem 1.9rem 0.65rem 1rem;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23d4af37" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7 7l3 3 3-3" stroke="%23d4af37" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 1.25em;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-select-desktop option {
  background-color: var(--bg-deep);
  color: var(--accent-gold);
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.8rem;
  }

  .lang-select-desktop {
    padding-left: 0.75rem;
    padding-right: 1.6rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  header,
  .nav-logo,
  .menu-toggle {
    animation: none !important;
    transform: none !important;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  li,
  a,
  span {
    overflow-wrap: anywhere;
  }

  .nav-container {
    flex-wrap: nowrap;
  }

  .nav-logo {
    min-width: 0;
  }

  .lang-selector-desktop {
    display: none;
  }

  .lang-selector-mobile {
    display: flex;
    margin-left: auto;
  }

  section[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  section[style*="padding: 12rem"],
  section[style*="padding: 10rem"],
  section[style*="padding: 5rem"] {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  main[style*="padding-top: 150px"] {
    padding-top: 100px !important;
  }

  footer[style] {
    padding: 4rem 0 2rem !important;
    margin-top: 4rem !important;
  }

  footer div[style*="grid-template-columns: 1.2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 3rem !important;
  }

  .glass-card[style*="display: flex"] {
    align-items: flex-start !important;
  }

  .menu-toggle {
    width: 35px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: clamp(0.875rem, 4vw, 1.25rem);
    padding-right: clamp(0.875rem, 4vw, 1.25rem);
  }

  h1,
  h2,
  h3,
  h4 {
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }

  p,
  li,
  a,
  span {
    overflow-wrap: anywhere;
  }

  .section-subtitle {
    letter-spacing: 0.12em;
    font-size: 0.7rem;
  }

  .section-header h2,
  h1[style],
  h2[style] {
    font-size: clamp(1.35rem, 8vw, 2rem) !important;
    line-height: 1.18 !important;
  }

  p[style*="font-size"] {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  div[style*="gap: 6rem"],
  div[style*="gap: 4rem"],
  div[style*="gap: 3rem"],
  div[style*="gap: 2.5rem"] {
    gap: 1.25rem !important;
  }

  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  footer div[style*="grid-template-columns: 1.2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  div[style*="width: 350px"][style*="height: 350px"] {
    width: min(72vw, 260px) !important;
    height: min(72vw, 260px) !important;
  }

  img[style*="width: 150px"][style*="height: 150px"] {
    width: 96px !important;
    height: 96px !important;
  }

  .glass-card[style*="display: flex"],
  div[style*="display: flex"][style*="gap: 2rem"] {
    flex-direction: column !important;
  }

  a[style*="padding: 1rem 2.5rem"],
  a[style*="padding: 1.5rem 5rem"],
  .btn-primary,
  .btn-outline {
    width: 100%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    white-space: normal;
  }

  .contact-map-card,
  iframe[height="500"],
  div[style*="min-height: 500px"] {
    min-height: 320px !important;
    height: 320px !important;
  }
}

@media (max-width: 420px) {
  .nav-logo img {
    height: 30px;
  }

  .lang-select,
  .lang-select-desktop {
    max-width: 82px;
    padding: 0.45rem 1.25rem 0.45rem 0.55rem;
    font-size: 0.6rem;
  }

  .menu-toggle {
    gap: 6px;
  }

  .menu-toggle span {
    width: 28px;
  }

  .glass-card {
    border-radius: 8px;
  }
}

/* ===== PREMIUM MOTION AND FINISH ===== */
@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumHeaderGlow {
  0%, 100% {
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.08);
  }
  50% {
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.22), 0 18px 55px rgba(0, 0, 0, 0.18);
  }
}

@keyframes premiumButtonSheen {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }
  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes premiumHalo {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.02);
  }
}

@keyframes premiumBorderTravel {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

header {
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.76), rgba(5, 10, 20, 0.28));
  backdrop-filter: blur(18px);
  animation: premiumFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both, premiumHeaderGlow 7s ease-in-out infinite;
}

header.scrolled {
  background: rgba(5, 10, 20, 0.92);
}

.nav-logo img {
  animation: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.nav-logo:hover img {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.45));
}

.nav-links a {
  transition: color 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
  transform: translateY(-1px);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.16), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(0, 51, 160, 0.12), transparent 28%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 22%, transparent 70%, rgba(218, 41, 28, 0.08));
  animation: premiumHalo 8s ease-in-out infinite;
}

.hero-content,
.hero-text-col,
.section-header,
.glass-card,
.news-card,
.vk-post-card {
  animation: premiumFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge,
.section-subtitle,
.news-date {
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}

.gold-gradient-text {
  background-size: 220% auto;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.18));
}

.glass-card,
.news-card,
.vk-post-card,
.contact-map-card {
  position: relative;
  isolation: isolate;
  border-color: rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.55s ease;
}

.glass-card::after,
.news-card::after,
.vk-post-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(212, 175, 55, 0.38), rgba(255, 255, 255, 0.16), transparent);
  background-size: 220% 100%;
  transition: opacity 0.45s ease;
  animation: premiumBorderTravel 5.5s linear infinite;
}

.glass-card:hover,
.news-card:hover,
.vk-post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.52);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.024);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 38px rgba(212, 175, 55, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card:hover::after,
.news-card:hover::after,
.vk-post-card:hover::after {
  opacity: 0.5;
}

.card-icon,
.contact-social-icon,
.social-icon {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease, box-shadow 0.45s ease;
}

.glass-card:hover .card-icon,
.contact-social-icon:hover,
.social-icon:hover {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.32));
}

.btn-primary,
.btn-outline,
.news-read-more,
.vk-read-btn,
.contact-submit {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.42s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.btn-primary::after,
.btn-outline::after,
.news-read-more::after,
.vk-read-btn::after,
.contact-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
}

.btn-primary:hover,
.btn-outline:hover,
.news-read-more:hover,
.vk-read-btn:hover,
.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 0 0 28px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover::after,
.btn-outline:hover::after,
.news-read-more:hover::after,
.vk-read-btn:hover::after,
.contact-submit:hover::after {
  animation: premiumButtonSheen 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-drone img,
.drone-card img {
  animation: none;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.hero-drone:hover img,
.drone-card:hover img {
  transform: translateY(-6px) scale(1.035);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.28));
}

@media (max-width: 768px) {
  .hero-section::before {
    opacity: 0.7;
  }

  .glass-card:hover,
  .news-card:hover,
  .vk-post-card:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .news-read-more:hover,
  .vk-read-btn:hover,
  .contact-submit:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero-content,
  .hero-text-col,
  .section-header,
  .glass-card,
  .news-card,
  .vk-post-card {
    animation-duration: 0.55s !important;
  }

  .reveal {
    filter: none;
    transform: translate3d(0, 14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .glass-card::after,
  .news-card::after,
  .vk-post-card::after,
  .btn-primary::after,
  .btn-outline::after,
  .news-read-more::after,
  .vk-read-btn::after,
  .contact-submit::after {
    animation: none !important;
  }
}

/* ===== SIGNATURE FOOTER ===== */
@keyframes footerReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerLineTravel {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@keyframes footerSignalPulse {
  0%, 100% {
    opacity: 0.22;
    transform: translateX(-50%) scaleX(0.94);
  }
  50% {
    opacity: 0.62;
    transform: translateX(-50%) scaleX(1);
  }
}

footer.premium-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(4rem, 8vw, 8rem) !important;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem) !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(212, 175, 55, 0.11), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(0, 51, 160, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.96), #010407 62%, #000204) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

footer.premium-footer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1120px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), rgba(212, 175, 55, 0.9), rgba(218, 41, 28, 0.55), transparent);
  background-size: 220% 100%;
  animation: footerLineTravel 8s linear infinite, footerSignalPulse 5s ease-in-out infinite;
}

footer.premium-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

footer.premium-footer > .container {
  position: relative;
  z-index: 1;
}

footer.premium-footer .footer-grid,
footer.premium-footer div[style*="grid-template-columns: 1.2fr 1fr 1fr 1fr"] {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.45fr) minmax(160px, 0.8fr) minmax(170px, 0.9fr) minmax(220px, 1fr) !important;
  gap: clamp(2.5rem, 5vw, 5.5rem) !important;
  align-items: start;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem) !important;
}

footer.premium-footer .footer-col,
footer.premium-footer .footer-grid > div {
  min-width: 0;
  animation: footerReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--footer-delay, 0s);
}

footer.premium-footer .footer-info .nav-logo,
footer.premium-footer .footer-col:first-child > div:first-child,
footer.premium-footer .footer-col:first-child .nav-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
}

footer.premium-footer .footer-info .nav-logo img,
footer.premium-footer .footer-col:first-child img[src*="logo"] {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22), 0 18px 35px rgba(0, 0, 0, 0.35);
}

footer.premium-footer .footer-info .nav-logo-text,
footer.premium-footer .footer-col:first-child h3 {
  display: block !important;
  color: var(--text-main) !important;
  font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

footer.premium-footer p,
footer.premium-footer li,
footer.premium-footer a {
  font-size: 0.96rem !important;
  line-height: 1.75 !important;
}

footer.premium-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72) !important;
}

footer.premium-footer .footer-col h4 {
  position: relative;
  margin: 0 0 2rem !important;
  padding-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
}

footer.premium-footer .footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ru-white), var(--ru-blue), var(--ru-red), var(--accent-gold));
  background-size: 240% 100%;
  animation: footerLineTravel 6s linear infinite;
}

footer.premium-footer .footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer.premium-footer .footer-links li {
  margin: 0 0 0.95rem !important;
}

footer.premium-footer .footer-links a,
footer.premium-footer a[href^="mailto"],
footer.premium-footer a[href^="tel"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.66) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color 0.32s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.32s ease;
}

footer.premium-footer .footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--accent-gold);
  transition: width 0.32s cubic-bezier(0.16, 1, 0.3, 1), margin-right 0.32s ease;
}

footer.premium-footer .footer-links a:hover,
footer.premium-footer a[href^="mailto"]:hover,
footer.premium-footer a[href^="tel"]:hover {
  color: var(--accent-gold) !important;
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.22);
}

footer.premium-footer .footer-links a:hover::before {
  width: 16px;
  margin-right: 0.65rem;
}

footer.premium-footer .social-icons,
footer.premium-footer div[style*="display: flex"][style*="gap: 1.2rem"] {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem !important;
  margin-top: 2rem;
}

footer.premium-footer .social-icon,
footer.premium-footer .social-icons a,
footer.premium-footer div[style*="gap: 1.2rem"] > a {
  width: 54px !important;
  height: 54px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(212, 175, 55, 0.42) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(212, 175, 55, 0.055) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  animation: none !important;
}

footer.premium-footer .social-icon:hover,
footer.premium-footer .social-icons a:hover,
footer.premium-footer div[style*="gap: 1.2rem"] > a:hover {
  transform: translateY(-5px) scale(1.04) !important;
  border-color: rgba(212, 175, 55, 0.86) !important;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38), 0 0 26px rgba(212, 175, 55, 0.22) !important;
}

footer.premium-footer .social-icon img,
footer.premium-footer .social-icons img,
footer.premium-footer div[style*="gap: 1.2rem"] img {
  width: 28px !important;
  height: 28px !important;
}

footer.premium-footer .footer-bottom,
footer.premium-footer div[style*="border-top"] {
  position: relative;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 2rem !important;
  padding-top: 2.25rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: left !important;
}

footer.premium-footer .footer-bottom p {
  margin: 0 !important;
  max-width: none;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
}

footer.premium-footer .footer-bottom > div,
footer.premium-footer div[style*="border-top"] > div {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem !important;
}

footer.premium-footer .footer-bottom span,
footer.premium-footer div[style*="border-top"] span {
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
}

@media (max-width: 1024px) {
  footer.premium-footer .footer-grid,
  footer.premium-footer div[style*="grid-template-columns: 1.2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  footer.premium-footer {
    padding-top: 4rem !important;
  }

  footer.premium-footer .footer-grid,
  footer.premium-footer div[style*="grid-template-columns: 1.2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  footer.premium-footer .footer-bottom,
  footer.premium-footer div[style*="border-top"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  footer.premium-footer .footer-bottom > div,
  footer.premium-footer div[style*="border-top"] > div {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  footer.premium-footer {
    margin-top: 3rem !important;
    padding-top: 3.25rem !important;
  }

  footer.premium-footer .footer-info .nav-logo img,
  footer.premium-footer .footer-col:first-child img[src*="logo"] {
    width: 54px !important;
    height: 54px !important;
  }

  footer.premium-footer p,
  footer.premium-footer li,
  footer.premium-footer a {
    font-size: 0.88rem !important;
  }

  footer.premium-footer .social-icon,
  footer.premium-footer .social-icons a,
  footer.premium-footer div[style*="gap: 1.2rem"] > a {
    width: 48px !important;
    height: 48px !important;
  }
}

