: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: 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;
}

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

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

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-khaki);
  border-radius: 10px;
}

.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;
}

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: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Предотвращение переносов в разделе "Сопровождение" */
.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);
  margin: 1.5rem 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: 1rem;
  flex-wrap: nowrap;
  width: 100%;
}

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

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.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;
}

@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: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

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

.lang-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.lang-btn:hover {
  border-color: var(--ru-blue);
  color: var(--ru-blue);
}

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

.lang-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7 7l3 3 3-3"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.2em;
}

.lang-select option {
  background-color: var(--bg-deep);
  color: var(--text-main);
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .lang-select {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
}

.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-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.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;
}

@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-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

@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-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  z-index: 1;
}

@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;
}

@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;
}

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

.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;
}

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

@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;
}

@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;
}

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

.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;
}

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

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

@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;
}

@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);
}

.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);
}

.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: var(--bg-section);
  border: 1px solid rgba(139, 134, 78, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

@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) {
  .news-card { grid-template-columns: 1fr; }
}

.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: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--bg-deep);
}

@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-wrap: break-word;
  overflow-wrap: break-word;
}

@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-wrap: break-word;
  overflow-wrap: break-word;
}

@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;
}

.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: break-word;
}

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

.vk-post-badge {
  color: var(--ru-blue);
  font-weight: 800;
  flex-shrink: 0;
}

.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;
}

@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;
}

.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;
}

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

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.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;
}

.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;
}

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

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

@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;
}

.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;
}

@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);
  }
}

@media (max-width: 480px) {
  .tricolor-line {
    height: 3px;
    width: 70px;
    margin: 1rem 0;
  }
  
  .news-card {
    border-radius: 6px;
  }
  
  .vk-post-header {
    padding: 0.8rem;
    gap: 0.6rem;
  }
  
  .vk-post-body {
    padding: 1rem 0.8rem;
  }
  
  .vk-post-footer {
    padding: 0.7rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .section-header {
    padding: 0;
  }
  
  .tricolor-line {
    height: 2px;
    width: 60px;
    margin: 0.8rem 0;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
    gap: 4px;
    margin-bottom: 0.8rem;
  }
  
  .news-card {
    border-radius: 4px;
  }
  
  .vk-post-header {
    padding: 0.7rem;
    gap: 0.5rem;
  }
  
  .vk-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  
  .vk-post-body {
    padding: 0.8rem;
  }
  
  .vk-post-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  
  .vk-post-body p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .vk-post-footer {
    padding: 0.6rem;
    gap: 0.5rem;
  }
  
  .news-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.55rem;
    margin-bottom: 0.6rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-grid {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-col p {
    font-size: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  
  h1, h2, h3, h4 {
    letter-spacing: 0.05em;
  }
  
  .drone-card {
    padding: 0.8rem;
  }
  
  .drone-card img {
    height: 80px;
    margin-bottom: 0.5rem;
  }
  
  .drone-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .drone-card p {
    font-size: 0.7rem;
  }
}

/* ===== 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;
}

@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;
}

.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;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-gold);
}

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

.contact-submit {
  padding: 1.2rem;
  letter-spacing: 2px;
  width: 100%;
}

.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;
}

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

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

.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: break-word;
}

.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: break-all;
}

.contact-schedule,
.contact-address {
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.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;
}

.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;
}

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

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

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

@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;
  }
}