/* ==========================================================================
   RECSCANE CREATIVE MEDIA AGENCY - ULTRA-PREMIUM PRODUCTION SYSTEM
   STRICT DESIGN SYSTEM & COLOR PALETTE:
   - Page Background: Pure pitch black #000000
   - Card Backgrounds: #0A0A0A and #111111 with glassmorphism backdrop-filter
   - Borders: 1px solid #222222 (hover: #FF0000 glow)
   - Primary Accent: Pure Vibrant Red #FF0000 ONLY
   - Text: Pure White #FFFFFF (Headings), Muted Cool Gray #A1A1AA (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Unbounded:wght@400;600;700;800;900&display=swap');

:root {
  --bg-black: #000000;
  --bg-card-dark: #0A0A0A;
  --bg-card-elevated: #111111;
  --border-dark: #222222;
  --border-muted: #1A1A1A;
  --accent-red: #FF0000;
  --accent-red-glow: rgba(255, 0, 0, 0.25);
  --accent-red-subtle: rgba(255, 0, 0, 0.08);
  --text-white: #FFFFFF;
  --text-gray: #A1A1AA;
  --text-muted: #71717A;
  
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-red {
  color: var(--accent-red) !important;
}

.text-gray {
  color: var(--text-gray);
}

.bg-glow-container {
  position: relative;
}
.bg-glow-container::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 24px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: inline-flex !important;
  align-items: flex-end !important;
  gap: 8px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 58px !important;
  width: auto !important;
  mix-blend-mode: screen;
  object-fit: contain !important;
  filter: contrast(1.1) brightness(1.1);
  display: block !important;
  transition: transform var(--transition-fast);
}

.brand-logo-text-scane {
  color: #FFFFFF !important;
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 0.88 !important;
  margin-bottom: 4px !important;
  opacity: 0.95;
  letter-spacing: -0.03em !important;
  display: inline-block !important;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-gray);
  white-space: nowrap;
}

.contact-quick a {
  color: var(--text-gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.contact-quick a:hover {
  color: var(--accent-red);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.06);
  border: 1px solid rgba(255, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Buttons */
.btn-primary {
  background: var(--accent-red);
  color: var(--text-white);
  border: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #E60000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
  transform: translateY(-2px);
}

.hero-section {
  padding: 40px 20px 70px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-heading {
  font-size: clamp(26px, 5.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 20px 0 16px;
  line-height: 1.15;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 30px;
  flex-wrap: wrap;
  max-width: 900px;
}

.services-nav-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-chip {
  background: #111111;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-chip:hover {
  border-color: var(--accent-red);
  background: rgba(255, 0, 0, 0.1);
  color: var(--accent-red);
  transform: translateY(-2px);
}

.service-chip.wa-link {
  border-color: rgba(0, 230, 118, 0.4);
  color: #00E676;
}

.service-chip.wa-link:hover {
  background: rgba(0, 230, 118, 0.15);
  border-color: #00E676;
  color: #00E676;
}

/* ==========================================================================
   BİZ KİMİK - ŞƏKİLDƏKİ 2 SÜTUNLU MİNİMAL DÜZÜLÜŞ
   ========================================================================== */
.split-about-section {
  max-width: 1240px;
  margin: 70px auto 30px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}

.split-about-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-about-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #71717A;
  letter-spacing: 0.05em;
}

.split-about-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.split-about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-about-right p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: #9CA3AF;
  margin: 0;
  font-weight: 400;
}

.split-about-right strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Pricing */
.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-card {
  background: #0A0A0A;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 30px var(--accent-red-glow);
  transform: translateY(-4px);
}

.pricing-card.bestseller {
  border: 2px solid var(--accent-red);
  background: #111111;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.35);
}

.bestseller-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.tier-name { font-size: 18px; font-weight: 800; margin-bottom: 8px; }

.tier-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tier-price span { font-size: 13px; font-family: var(--font-body); color: var(--text-gray); font-weight: 400; }

.tier-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-gray); }
.tier-features li svg { flex-shrink: 0; stroke: var(--accent-red); margin-top: 3px; }
.tier-features li strong { color: var(--text-white); }

.tier-motto-box {
  margin: 20px 0 16px;
  padding: 10px 8px;
  background: rgba(255, 0, 0, 0.04);
  border: 1px dashed rgba(255, 0, 0, 0.3);
  border-radius: var(--radius-sm);
}

.motto-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.motto-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: italic;
  flex: 1;
}

.motto-arrow {
  color: var(--accent-red);
  font-size: 16px;
  font-weight: 900;
  animation: bounceArrow 1.4s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.btn-package-cta {
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-align: center;
}

/* Calculator */
.calculator-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #0A0A0A;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
}

.calc-body { padding: 36px 28px; }
.calc-step { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border-muted); }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }

.option-card {
  background: #111111;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.option-card.selected {
  border: 2px solid var(--accent-red) !important;
  background: rgba(255, 0, 0, 0.12) !important;
}

.option-name { font-weight: 700; font-size: 13px; margin-bottom: 4px; color: var(--text-white); }
.option-desc { font-size: 11px; color: var(--text-gray); }
.slider-group { margin-bottom: 18px; }
.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.slider-val { font-family: var(--font-heading); font-weight: 800; color: var(--accent-red); }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #222222;
  border-radius: var(--radius-full);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-red);
  cursor: pointer;
}

.calc-summary-sidebar {
  background: #111111;
  border-left: 1px solid var(--border-dark);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title { font-family: var(--font-heading); font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-dark); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; color: var(--text-gray); }
.total-price-box { margin: 20px 0; padding: 18px; background: #0A0A0A; border: 1px solid var(--accent-red); border-radius: var(--radius-md); }
.total-amount { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--accent-red); }

/* Bento Grid Team */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; max-width: 1300px; margin: 0 auto; }
.bento-card { background: #0A0A0A; border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 24px; position: relative; }
.bento-col-12 { grid-column: span 12; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 18px; }
.team-card { background: #111111; border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 16px; text-align: center; }

.team-avatar { 
  width: 68px; 
  height: 68px; 
  border-radius: 50%; 
  background: #222222; 
  border: 2px solid var(--accent-red); 
  margin: 0 auto 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
  font-family: var(--font-heading); 
  font-size: 20px; 
  font-weight: 800; 
  color: var(--text-white); 
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-name { font-weight: 700; font-size: 15px; }
.team-role { font-size: 11px; color: var(--accent-red); font-weight: 600; }

/* AI Chatbot */
#ai-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ai-chat-trigger {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--accent-red);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  transition: all var(--transition-fast);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 30px var(--accent-red-glow);
}

.ai-trigger-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ai-online-indicator {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #00E676;
  border: 2px solid #000000;
  border-radius: 50%;
}

.ai-speech-bubble {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: #111111;
  border: 1px solid var(--accent-red);
  color: #FFFFFF;
  padding: 10px 32px 10px 14px;
  border-radius: var(--radius-md) var(--radius-md) 2px var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-speech-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ai-speech-close-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #71717A;
  font-size: 12px;
  cursor: pointer;
}

.ai-speech-close-btn:hover {
  color: #FFFFFF;
}

.ai-chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  height: 460px;
  background: #0A0A0A;
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--accent-red-glow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(20px);
  transform-origin: bottom right;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.ai-chat-header {
  padding: 14px 16px;
  background: #111111;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-close-box-btn {
  background: transparent;
  border: none;
  color: #A1A1AA;
  font-size: 16px;
  cursor: pointer;
}

.ai-close-box-btn:hover {
  color: #FFFFFF;
}

.ai-messages-container {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.45;
  border-radius: var(--radius-md);
  word-wrap: break-word;
}

.ai-msg.bot {
  align-self: flex-start;
  background: #161616;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  border-bottom-left-radius: 2px;
}

.ai-msg.user {
  align-self: flex-end;
  background: var(--accent-red);
  color: #FFFFFF;
  font-weight: 600;
  border-bottom-right-radius: 2px;
}

.ai-chat-input-bar {
  padding: 10px 12px;
  background: #111111;
  border-top: 1px solid var(--border-dark);
  display: flex;
  gap: 8px;
}

.ai-chat-input-bar input {
  flex: 1;
  background: #000000;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  color: #FFFFFF;
  font-size: 12px;
  outline: none;
}

.ai-chat-input-bar input:focus {
  border-color: var(--accent-red);
}

.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-red);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.ai-send-btn:hover {
  transform: scale(1.05);
}

/* Toast & Footer */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; }
.toast-msg { background: #0A0A0A; border: 1px solid var(--accent-red); color: var(--text-white); padding: 12px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.site-footer { border-top: 1px solid var(--border-dark); background: #0A0A0A; padding: 50px 20px 30px; margin-top: 70px; }
.footer-content { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-contact-details { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-gray); }

@media (max-width: 880px) {
  .split-about-section {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 50px;
    padding: 0 16px;
  }

  .calculator-container { grid-template-columns: 1fr; }
  .calc-summary-sidebar { border-left: none; border-top: 1px solid var(--border-dark); }
}
/* ==========================================================================
   HEADER DİL DƏYİŞDİRİCİ (AZ | EN | RU)
   ========================================================================== */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch-box {
  display: flex;
  align-items: center;
  background: #111111;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  gap: 6px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #71717A;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  color: var(--accent-red);
}

.lang-sep {
  color: #27272A;
  font-size: 11px;
  user-select: none;
}

@media (max-width: 768px) {
  .header-right-group {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }
  .btn-calc-nav {
    flex: 1;
    text-align: center;
  }
}
