/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Zorg Biogas Style)
   ========================================================================== */
:root {
  --bg-primary-rgb: 248, 250, 252;
  --bg-secondary-rgb: 241, 245, 249;
  --bg-tertiary-rgb: 255, 255, 255;
  --accent-rgb: 237, 28, 36; /* Phoenix Red Brand Accent */
  --accent-orange-rgb: 255, 91, 36;

  --bg-primary: rgb(var(--bg-primary-rgb));
  --bg-secondary: rgb(var(--bg-secondary-rgb));
  --bg-tertiary: rgb(var(--bg-tertiary-rgb));
  --accent: rgb(var(--accent-rgb));
  --accent-hover: #c4121a;
  --accent-gold: #eab308;
  
  --text-main: #1e293b; /* Premium slate text for high contrast */
  --text-muted: #64748b;
  --text-dark: #ffffff;
  --border-color: rgba(0, 0, 0, 0.05);
  
  --font-headers: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --glass-bg: rgba(255, 255, 255, 0.85); /* Solid clean card background */
  --glass-border: rgba(0, 0, 0, 0.05);
  --glass-blur: none;
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  background-size: 400% 400%;
  animation: fluid-bg 15s ease infinite;
}

@keyframes fluid-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Selection */
::selection {
  background-color: var(--accent);
  color: var(--text-main);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Background Grid Overlay (Stripe/Linear style) */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.8;
}

/* Background Blobs (Premium Shifting Gradient - Aurora Effect) */
.bg-blobs {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200vw;
  height: 200vh;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(125deg, #f1f5f9 0%, #ffd6d8 25%, #bae6fd 50%, #e9d5ff 75%, #fed7aa 100%);
  background-size: 100% 100%;
  will-change: transform;
  animation: fluid-aurora-gpu 8s ease-in-out infinite alternate;
}

@keyframes fluid-aurora-gpu {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(6%, 4%) scale(1.05) rotate(1deg);
  }
  100% {
    transform: translate(-3%, -6%) scale(0.97) rotate(-1deg);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: 1;
  pointer-events: none;
}

@media (hover: hover) {
  .btn-primary:hover::before {
    animation: shine-sweep 0.75s ease-in-out;
  }
}

@keyframes shine-sweep {
  100% {
    left: 150%;
  }
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
  transform: translateY(-2px);
  color: var(--text-main);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.96);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: rgb(var(--accent-rgb));
  background-color: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.15);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: padding var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.header.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-svg {
  width: 150px;
  height: 48px;
}

.nav-desktop {
  display: block;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-headers);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header Social icons */
.social-links-header {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  color: var(--text-main);
  border-color: var(--accent);
}

.tg-btn:hover {
  background-color: #0088cc;
  border-color: #0088cc;
}

.vb-btn:hover {
  background-color: #7360f2;
  border-color: #7360f2;
}

.btn-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .social-links-header {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
  left: 0;
}

.mobile-nav-list {
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  padding: 15px 0;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--accent);
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Toggle Active State */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 120px;
  background: transparent;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgb(var(--accent-rgb));
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-headers);
  font-size: 6.2rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--text-main);
}

.hero-subtitle {
  font-family: var(--font-headers);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-main);
}

.hero-tagline span {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
}

.visual-glow-ring {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: spin-slow 24s infinite linear;
}

.ring-1 {
  width: 340px;
  height: 340px;
  border-color: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.03);
}

.ring-2 {
  width: 250px;
  height: 250px;
  border-color: rgba(var(--accent-orange-rgb), 0.08);
  animation-duration: 18s;
  animation-direction: reverse;
}

.ring-3 {
  width: 160px;
  height: 160px;
  border-color: rgba(255, 255, 255, 0.05);
  animation-duration: 12s;
}

.visual-logo-glow {
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.5) 0%, transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
  animation: pulse-logo 3.5s ease-in-out infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }

  .hero-visual {
    display: none;
  }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse-icon {
  display: block;
  width: 26px;
  height: 44px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  position: relative;
  transition: border-color var(--transition-fast);
}

.mouse-icon:hover {
  border-color: var(--accent);
}

.wheel {
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--accent);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .hero-tagline {
    font-size: 1.15rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SECTION HEADER (Zorg Biogas style headers)
   ========================================================================== */
.section-header {
  position: relative;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-body);
  font-weight: 700;
  color: rgb(var(--accent-rgb));
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 50px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-headers);
  font-size: 3.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.section-watermark {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-headers);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: -1;
  line-height: 1;
  user-select: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-watermark {
    font-size: 5rem;
    top: -15px;
  }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.about-heading {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-main);
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--text-main);
}

/* Stats (Big outline numbers) */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--accent-rgb), 0.1);
}

.stat-card:hover::before {
  height: 100%;
}

.stat-num {
  font-family: var(--font-headers);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  /* Outline Text Style */
  -webkit-text-stroke: 1.5px var(--accent);
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: -webkit-text-fill-color var(--transition-fast);
}

.stat-card:hover .stat-num {
  -webkit-text-fill-color: var(--accent);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   VALUES SECTION (Кого ми шукаємо)
   ========================================================================== */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  z-index: 2;
  position: relative;
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: calc(33.333% - 20px);
  text-align: center;
}

@media (max-width: 992px) {
  .value-card {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .value-card {
    max-width: 100%;
  }
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--accent-rgb), 0.1);
}

.value-card:hover::after {
  width: 100%;
}

.value-num {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.value-title {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   VACANCIES SECTION
   ========================================================================== */
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.vacancy-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 45px 35px;
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancy-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--accent-rgb), 0.15);
}

.vacancy-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: rgba(237, 28, 36, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all var(--transition-fast);
}

.vacancy-card:hover .vacancy-icon-box {
  background-color: var(--accent);
  color: var(--text-main);
  transform: scale(1.05);
}

.vacancy-title {
  font-family: var(--font-headers);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.v-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 3px;
}

.vacancy-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.vacancy-footer {
  margin-top: auto;
}

.vacancy-footer .btn {
  width: 100%;
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.15) 50%, transparent 50%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  z-index: -1;
}

.process-step {
  background-color: var(--bg-primary);
  padding: 20px;
  text-align: left;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgb(var(--accent-rgb));
  background-color: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.process-step:hover .step-num {
  background-color: var(--accent);
  color: var(--text-main);
  border-color: var(--accent);
  transform: rotate(10deg);
}

.step-title {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
  }
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  z-index: 2;
  position: relative;
}

.partner-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  align-items: center;
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(var(--accent-rgb), 0.1);
}

.partner-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid var(--glass-border);
  height: 100%;
}

.partner-logo-img {
  max-width: 200px;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.8;
  transition: filter var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

.partner-card:hover .partner-logo-img {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.partner-info {
  padding: 30px 40px;
}

.partner-name {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.partner-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .partner-card {
    grid-template-columns: 1fr;
  }
  
  .partner-logo-container {
    padding: 30px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .partner-info {
    padding: 25px;
  }
}

/* ==========================================================================
   GEOGRAPHY / INTERACTIVE MAP
   ========================================================================== */
.map-wrapper {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: 2;
}

.ukraine-map-svg {
  width: 100%;
  height: auto;
  max-height: 550px;
  display: block;
}

.map-pin circle[fill="#ed1c24"] {
  fill: #ff2c38;
}

.map-pin circle[fill="#ffcc00"] {
  fill: #eab308;
}

.oblast-path {
  fill: #e2e8f0;
  stroke: #94a3b8;
  stroke-width: 1px;
  stroke-dasharray: 4,4;
  transition: fill var(--transition-fast), stroke var(--transition-fast);
}

.oblast-path:hover {
  fill: #cbd5e1;
  stroke: #64748b;
}

/* Other countries styling */
.map-country-other {
  fill: #f1f5f9 !important;
  stroke: #e2e8f0 !important;
  opacity: 0.7;
}

.country-label {
  font-family: var(--font-headers);
  font-size: 10px;
  font-weight: 600;
  fill: #43545e;
  letter-spacing: 1px;
}

.pin-text {
  font-family: var(--font-headers);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  fill: #1e293b;
  opacity: 0.95;
  text-anchor: middle;
  pointer-events: none;
  transition: fill var(--transition-fast), opacity var(--transition-fast);
  /* White outline halo for extreme legibility */
  paint-order: stroke fill;
  stroke: #ffffff;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.pin-branch .pin-text {
  fill: var(--accent);
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  opacity: 1;
  stroke: #ffffff;
  stroke-width: 4.5px;
}

.map-pin:hover .pin-text {
  fill: var(--accent);
}

.pin-branch:hover .pin-text {
  fill: var(--accent-hover);
}

/* Pulsing markers */
.pin-glow-red {
  display: block !important;
  fill: rgba(237, 28, 36, 0.45);
  animation: pin-pulse 2s infinite ease-out;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0.8;
}

.pin-glow-gold {
  display: none;
}

.pin-grey {
  cursor: default !important;
}

.pin-text-grey {
  fill: #64748b !important;
  opacity: 0.65;
}

.pin-grey:hover .pin-text-grey {
  fill: #475569 !important;
  opacity: 0.95;
}

@keyframes pin-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

.map-pin {
  cursor: pointer;
  transform-origin: center;
}

/* Connection lines */
.tech-connection-line {
  stroke: var(--border-color);
  stroke-width: 1.5;
  stroke-dasharray: 4;
  opacity: 0.6;
}

@keyframes line-pulse {
  to {
    stroke-dashoffset: -20;
  }
}

/* Map legend */
.map-legend {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 25px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.dot-gold {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Tooltip on Map */
.map-tooltip {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(19, 21, 22, 0.95);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  padding: 15px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  max-width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.map-tooltip.active {
  opacity: 1;
}

.map-tooltip h4 {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.map-tooltip p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .map-wrapper {
    padding: 10px;
  }
  .pin-text {
    display: block !important;
    font-size: 8px !important;
    stroke-width: 2.5px !important;
  }
  .pin-branch .pin-text {
    font-size: 9px !important;
    stroke-width: 3.0px !important;
  }
  .map-legend {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
}

/* ==========================================================================
   CONTACTS & FORM SECTION
   ========================================================================== */
.contacts-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  z-index: 2;
  position: relative;
}

.contacts-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contacts-details {
  font-size: 1.05rem;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.contacts-details p {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.contacts-details strong {
  color: var(--text-main);
}

.contacts-details a {
  color: var(--text-main);
  font-weight: 600;
}

.contacts-details a:hover {
  color: var(--accent);
}

/* Social link buttons */
.social-contact-wrapper {
  margin-top: 40px;
}

.social-contact-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.badge-tg {
  background-color: #0088cc;
}

.badge-tg:hover {
  background-color: #0077b3;
  transform: translateY(-3px);
}

.badge-vb {
  background-color: #7360f2;
}

.badge-vb:hover {
  background-color: #5b47de;
  transform: translateY(-3px);
}

/* Form Styling */
.contacts-form-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
}

.form-box-title {
  font-family: var(--font-headers);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.application-form .form-group {
  margin-bottom: 20px;
}

.application-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.application-form input[type="text"],
.application-form input[type="tel"],
.application-form select,
.application-form textarea {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: var(--text-main);
  font-size: 1rem;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.application-form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%231e293b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

/* Custom file upload styling */
.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: var(--bg-primary);
  border: 1.5px dashed var(--border-color);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.file-upload-wrapper:hover .file-upload-btn {
  border-color: var(--accent);
  color: var(--accent);
}

.file-upload-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 15px;
  text-align: center;
}

.form-privacy-note a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contacts-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .contacts-form-box {
    padding: 25px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.footer-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   MODAL WINDOWS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content-box {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 50px 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--accent);
}

.modal-title {
  font-family: var(--font-headers);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 5px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}

/* Privacy Modal content box override */
.privacy-modal-content {
  max-width: 700px;
}

.privacy-body-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-body-text p {
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .modal-content-box {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .btn,
  .btn-primary::before,
  .stat-card,
  .value-card,
  .vacancy-card,
  .partner-card,
  .ukraine-map-svg,
  .modal-content-box,
  .pin-glow-red,
  .pin-glow-gold {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}

/* Vacancy Photo Box */
.vacancy-image-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.vacancy-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.vacancy-card:hover .vacancy-img-photo {
  transform: scale(1.05);
}

body {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   ADDITIONAL PREMIUM REDESIGN ELEMENTS
   ========================================================================== */

/* Hero Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 auto 40px auto;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  width: fit-content;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat-val {
  font-family: var(--font-headers);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.trust-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* About Quote */
.about-quote {
  position: relative;
  padding: 18px 22px 18px 45px;
  margin-bottom: 25px;
  background: rgba(237, 28, 36, 0.03);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.quote-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 1.3rem;
  color: rgba(237, 28, 36, 0.2);
}

.about-quote p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.45;
}

/* Values Icons */
.value-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(237, 28, 36, 0.06);
  border: 1px solid rgba(237, 28, 36, 0.12);
  color: var(--accent);
  font-size: 1.35rem;
  margin: 0 auto 25px auto;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.08);
  background: var(--accent);
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(237, 28, 36, 0.25);
}

/* Geography Split Grid & City Details */
.geography-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
  width: 100%;
}

.map-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.city-details-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: var(--glass-shadow);
  width: 100%;
}

.panel-title {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-title i {
  color: var(--accent);
}

.city-cards-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.city-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.city-card:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: #94a3b8;
  transform: translateX(4px);
}

.city-card.active {
  background: rgba(237, 28, 36, 0.06) !important;
  border-color: rgba(237, 28, 36, 0.28) !important;
  box-shadow: 0 8px 24px rgba(237, 28, 36, 0.08);
}

.city-card.active::before {
  opacity: 1;
}

.city-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.city-card-name {
  font-family: var(--font-headers);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.city-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.city-card-badge.office {
  background: rgba(237, 28, 36, 0.12);
  border-color: rgba(237, 28, 36, 0.25);
  color: #ff3b46;
}

.city-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.city-card-metrics {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.city-card-metrics strong {
  color: var(--text-main);
}

/* Social Contact Buttons */
.badge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--text-main);
  transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.badge-btn-tg {
  background: #0088cc;
}

.badge-btn-tg:hover {
  background: #007cb8;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 136, 204, 0.25);
}

.badge-btn-vb {
  background: #7360f2;
}

.badge-btn-vb:hover {
  background: #5f4ce0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(115, 96, 242, 0.25);
}

.badge-btn:active {
  transform: translateY(0) scale(0.97);
}

@media (max-width: 992px) {
  .geography-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-trust-bar {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
  }
  
  .trust-stat-val {
    font-size: 1.4rem;
  }
  
  .trust-stat-lbl {
    font-size: 0.7rem;
  }
  
  .city-details-panel {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   LIGHT THEME OVERRIDES & COMPATIBILITY
   ========================================================================== */

/* Brand Logo custom dimensions */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* Light theme watermark override */
.section-watermark {
  color: rgba(0, 0, 0, 0.015) !important;
}

/* Light theme soft shadows overrides */
.stat-card:hover,
.value-card:hover,
.vacancy-card:hover,
.partner-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), 0 0 15px rgba(237, 28, 36, 0.05) !important;
}

/* Viber & Telegram button text colors */
.badge-btn {
  color: #ffffff !important;
}

/* Vacancies Section header shadow */
.vacancies-section .section-title {
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08), -1px -1px 0 rgba(255, 255, 255, 0.9) !important;
  letter-spacing: -1px;
}
