@charset "UTF-8";

:root {
  --bg: #0b0b0d;
  --card: #0f1113;
  --muted: #9aa3b2;
  --accent: #6ee7b7;
  --header-height: 88px;
}

* { box-sizing: border-box; word-wrap: break-word;
  overflow-wrap: break-word; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: #eef2f5;
  line-height: 1.5;
  word-break: break-word;
  /*hyphens: auto;	*/
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; 
  width: 100%;
  box-sizing: border-box;
  /*verflow-x: hidden;*/
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px; 
  margin: 0 auto;   
  padding: 5px 1px 2px 2px;  
  box-sizing: border-box;
  overflow: visible; 
	position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(5,5,7,0.85), rgba(5,5,7,0.6));
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin-left: auto;
  overflow: visible; 
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  flex: 0 0 auto;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.2;
  transition: all 0.15s ease-in-out;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.nav-link {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 10px 12px;
  color: inherit;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.nav-link:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease-in-out;
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  outline: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease-in-out;
}

.nav-link.active:hover {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05); 
}

.nav-link.cta {
  color: var(--accent);
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.06), rgba(110, 231, 183, 0.02));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.25s ease-in-out;
}

.nav-link.cta:hover {
  transform: translateY(-3px);
  color: #b8ffd6;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.18), rgba(110, 231, 183, 0.10));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(110, 231, 183, 0.25);
}

.nav-link.cta::after {
    content: ''; 
}
.nav-link.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.06), rgba(110, 231, 183, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.nav-link.cta-icon .icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(56%) saturate(394%) hue-rotate(116deg) brightness(92%) contrast(92%);
  transition: filter 0.25s ease-in-out;
  display: block;
  margin: 0;
}

.nav-link.cta-icon:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.18), rgba(110, 231, 183, 0.10));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(110, 231, 183, 0.25);
}

.nav-link.cta-icon:hover .icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(587%) hue-rotate(116deg) brightness(105%) contrast(101%);
}

.nav-link.nav-title {
  font-weight: 600; 
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.08);
}

.nav-link.nav-title:hover,
.nav-link.nav-title.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.header-actions .price-label {
    margin-left: 0px;
    opacity: 0.9;
}

.hero {
  padding-top: var(--header-height);
  padding-bottom: 40px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
  margin: 10px 0;
}

.lead {
  color: #cfd8e3;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
  max-width: 900px;
  margin: 0 auto;
}

.features .grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

#home .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}


#home .grid .card {
  min-width: 220px;
  flex: 1 1 220px;  
  max-width: 900px;
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

.card h3 { margin: 0 0 8px 0; }

.screens-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-content: center;
  max-width: calc((480px + 12px) * 3);
}

.screens-grid .card {
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  overflow: hidden;
  flex: 1 1 330px;
  max-width: 480px;
}

.screens-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover; 	
  border-radius: 8px;
  display: flex;

}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.review-controls .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 12px;
  background: none;
  color: inherit;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.review-controls .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.review-controls .nav-link:active {
  transform: scale(0.96);
  opacity: 0.9;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  justify-content: center;
}

#faq .faq-grid .card {
  min-width: 260px; 
  flex: 1 1 220px;
  max-width: 900px;
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

.contact-form { max-width: 700px;  position: relative; }

.site-footer {
  margin-top: 40px;
  padding: 24px;
  background: #060607;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-inner {
  display: block;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner > div {
  display: block;
  margin-bottom: 10px;
}

.site-footer a,
.site-footer a:visited,
.site-footer a:link {
  color: #ffffff !important;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

section[id]:not(#home) {
  scroll-margin-top: var(--header-height);
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#home {
  scroll-margin-top: 0;
}

.demo-buttons .nav-link.cta {
  display: inline-block;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.demo-buttons .nav-link.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}


.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #1a1c1f;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="white" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  color: #f0f0f0;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 32px 8px 12px;
  outline: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.lang-select:hover,
.lang-select:focus {
  border-color: rgba(110,231,183,0.6);
  box-shadow: 0 0 8px rgba(110,231,183,0.3);
}

.lang-select::-webkit-scrollbar {
  width: 8px;
}
.lang-select::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 8px;
}

option::before {
  content: attr(data-flag) " ";
}

.lang-current:hover {
  border-color: rgba(110,231,183,0.5);
  box-shadow: 0 0 8px rgba(110,231,183,0.2);
}

.lang-current .arrow {
  margin-left: 6px;
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.lang-dropdown.open .lang-current .arrow {
  transform: rotate(180deg);
}

.lang-menu.open {
  display: flex;
  animation: fadeIn 0.15s ease-in-out;
}

.lang-group {
  padding: 4px 0;
}

.lang-group.secondary {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

.group-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  padding: 6px 14px;
}

.lang-item:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.lang-item.active {
  background: rgba(110,231,183,0.1);
  color: #6ee7b7;
}

.flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 2px rgba(0,0,0,0.4);
}
.lang-item .flag {
  margin-right: 8px;
}
.lang-current .flag {
  margin-right: 6px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-menu::-webkit-scrollbar {
  width: 8px;
}

.lang-menu::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 8px;
}

.lang-current {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  color: #fff;
}

.lang-current .flag {
  width: 20px;
  height: 14px;
  margin-right: 6px;
  border-radius: 3px;
}



.lang-dropdown {
  position: relative;
  display: inline-block;
  user-select: none;
  margin-top: 10px;	
	left: 0;
    right: auto;
}

.lang-menu {
  position: absolute;
  bottom: 120%;
  left: 0;
  right: auto;
  background: #222;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  max-height: 300px;
  overflow-y: auto;
  width: 220px;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-item {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  color: #ddd;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.15s;
}

.lang-item .flag {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

.lang-item:hover {
  background: #333;
  color: #fff;
}

.lang-item.active {
  background: #3b3b3b;
  color: #fff;
  font-weight: 600;
  border-left: 3px solid #00ffa3;
}

#home .lead {
  margin-bottom: 20px; 
}

.card h3 i {
  color: #ffffff;
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: transform 0.2s ease, color 0.2s ease;
}

.card h3 i:hover {
  transform: scale(1.15);
  color: #e0e0e0;
}

.price-label {
  font-weight: 500;
  font-size: 0.95em;
  color: #fff;
  white-space: nowrap;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

:root {
  --review-gap: 8px;
}

.reviews-wrap {
  position: relative;
}

.review-carousel {
  padding-bottom: calc(36px + var(--review-gap) * 2); 
}

.reviews-wrap .review-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--review-gap);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.reviews-wrap .review-controls .nav-link {
  min-width: 42px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-carousel .review-slide:last-child {
  margin-bottom: 0;
}

.review-slide p {
  font-size: 1rem;
  margin: 0;
}

.grid .card {
  transition: all 0.25s ease-in-out;
  background: rgba(255, 255, 255, 0.02);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.grid .card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  outline: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.lightbox button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox button:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

.lightbox .close {
  top: 30px;
  right: 30px;
  transform: none;
  font-size: 26px;
}

.screens-grid .card img {
  transition: transform 0.3s ease;
}

.screens-grid .card:hover img {
  transform: scale(1.08);
}

#screenshots {
  scroll-margin-top: var(--header-height);
  min-height: 80vh; 
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  display: block;
  font-size: 0.95em;
  color: #e8e8e8;
}

.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  color: #fff;
  font-size: 1em;
  font-family: inherit;
  resize: vertical;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: rgba(110,231,183,0.6);
  box-shadow: 0 0 6px rgba(110,231,183,0.3);
  outline: none;
}

.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 12px; 
  position: relative;
}

.form-status {
  font-size: 0.9rem;
  color: #fff; 
  background: none;
  border: none;      
  box-shadow: none;   
  padding: 0;        
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  margin-left: 8px;     
  display: inline-block;
}

.form-status.show { opacity: 1; }
.form-status.success { color: #0f0; }
.form-status.error { color: #f55; }
.form-status.sending { color: #ff0; }

.contact-form button.cta {
  padding: 10px 18px;	
	display: inline-block;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.contact-form button.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

#sendBtn.sending {
  position: relative;
  color: #aaa;
  pointer-events: none;
}

#sendBtn.sending::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


@media (max-width: 1500px) and (min-width: 971px) {
  html[lang="el"] .price-unit { display: none; }
}

@media (max-width: 1070px) and (min-width: 1025px) {
  	html[lang="es"] .price-unit,
	html[lang="fi"] .price-unit, 
	html[lang="et"] .price-unit, 
	html[lang="sk"] .price-unit { display: none; }
}

@media (max-width: 1050px) and (min-width: 1025px) {
  	html[lang="de"] .price-unit, 
	html[lang="tr"] .price-unit, 
	html[lang="vi"] .price-unit, 
	html[lang="pl"] .price-unit, 
	html[lang="nl"] .price-unit, 
	html[lang="ro"] .price-unit { display: none; }
}

@media (max-width: 1035px) and (min-width: 851px) {
	html[lang="sv"] .price-unit { display: none; }
}

@media (max-width: 1024px) {
	html[lang="ja"] .price-unit, 
	html[lang="he"] .price-unit { display: none; }
		
	html:not([lang="en"]):not([lang="zh"]):not([lang="zh-CN"]):not([lang="ko"]):not([lang="ja"]):not([lang="th"]):not([lang="sv"]):not([lang="he"]):not([lang="hu"]):not([lang="el"]):not([lang="ca"]):not([lang="bg"]):not([lang="sr"]) .nav-link.nav-title .full-text  {
		display: none;
	}

	html[lang="sk"] .nav-link.nav-title::after { content: "Trade panel"; }	
	
	html[lang="da"] .nav-link.nav-title::after { content: "Handelspanel"; }
	
	html[lang="no"] .nav-link.nav-title::after { content: "Handelspanel"; }
	
	html[lang="tr"] .nav-link.nav-title::after { content: "Ticaret paneli"; }
	
	html[lang="ru"] .nav-link.nav-title::after { content: "Обзор"; }

	html[lang="es"] .nav-link.nav-title::after,
	html[lang="id"] .nav-link.nav-title::after,
	html[lang="ro"] .nav-link.nav-title::after,
	html[lang="vi"] .nav-link.nav-title::after { content: "Panel trade"; }
			
	html[lang="pl"] .nav-link.nav-title::after { content: "Panel handlowy"; }

	html[lang="pt"] .nav-link.nav-title::after { content: "Painel trade"; }

	html[lang="de"] .nav-link.nav-title::after { content: "Trade-Panel"; }

	html[lang="fr"] .nav-link.nav-title::after { content: "Panneau trade"; }

	html[lang="it"] .nav-link.nav-title::after { content: "Pannello trade"; }

	html[lang="ar"] .nav-link.nav-title::after { content: "لوحة تداول"; }	

	html[lang="hi"] .nav-link.nav-title::after { content: "ट्रेड पैनल"; }

	html[lang="et"] .nav-link.nav-title::after { content: "Kaubanduse paneel"; }
	
	html[lang="nl"] .nav-link.nav-title::after { content: "Handelpaneel"; }
	
	html[lang="cs"] .nav-link.nav-title::after { content: "Obchodní panel"; }

	html[lang="fi"] .nav-link.nav-title::after { content: "Kaupan paneeli"; }

  	.nav { gap: 5px; }
}

@media (max-width: 1024px) and (min-width: 881px) {
  html[lang="it"] .price-unit { display: none; }
}

@media (max-width: 1024px) and (min-width: 921px) {
  html[lang="sk"] .price-unit { display: none; }
}

@media (max-width: 1024px) and (min-width: 861px) {
  html[lang="de"] .price-unit { display: none; }
}

@media (max-width: 1000px) and (min-width: 911px) {
  html[lang="fi"] .price-unit { display: none; }
}

@media (max-width: 1000px) and (min-width: 901px) {
  html[lang="ca"] .price-unit { display: none; }
}

@media (max-width: 980px) and (min-width: 881px) {
  	html[lang="tr"] .price-unit, 
	html[lang="hu"] .price-unit { display: none; }
}

@media (max-width: 970px) and (min-width: 881px) {
  html[lang="sr"] .price-unit { display: none; }
}

@media (max-width: 960px) and (min-width: 881px) {
  	html[lang="ar"] .price-unit, 
	html[lang="vi"] .price-unit, 
	html[lang="th"] .price-unit, 
	html[lang="nl"] .price-unit, 
	html[lang="ro"] .price-unit, 
	html[lang="et"] .price-unit { display: none; }
}

@media (max-width: 960px) and (min-width: 861px) {
  html[lang="pl"] .price-unit { display: none; }
}

@media (max-width: 940px) and (min-width: 871px) {
	html[lang="bg"] .price-unit { display: none; }
}

@media (max-width: 940px) and (min-width: 771px) {
	html[lang="en"] .nav-link.nav-title .full-text { display: none; }
	html[lang="en"] .nav-link.nav-title::after { content: "Trade panel"; }
}

@media (max-width: 935px) and (min-width: 861px) {
  html[lang="cs"] .price-unit { display: none; }
}

@media (max-width: 920px) and (min-width: 861px) {
	html[lang="da"] .price-unit { display: none; }
}

@media (max-width: 920px) and (min-width: 851px) {
	html[lang="no"] .price-unit { display: none; }
}

@media (max-width: 920px) { 	
	html[lang="he"] .nav-link.nav-title .full-text { display: none; }

	html[lang="he"] .nav-link.nav-title::after { content: "פאנל סחר"; }
	
	html[lang="sk"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 910px) { 	
	html[lang="sv"] .nav-link.nav-title .full-text { display: none; }

	html[lang="sv"] .nav-link.nav-title::after { content: "Handelspanel"; }
	
	html[lang="ru"] .price-unit  { display: none; }
}

@media (max-width: 910px) and (min-width: 821px) {
  html[lang="es"] .price-unit { display: none; }
}

@media (max-width: 970px) {
	html[lang="el"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 910px) {
	html[lang="fi"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 910px) and (min-width: 821px) {
  html[lang="zh"] .price-unit, html[lang="zh-CN"] .price-unit { display: none; }
}

@media (max-width: 900px) {
	html[lang="ja"] .pg_idex .nav-wrapper, 
	html[lang="ca"] .pg_idex .nav-wrapper { display: none; }
	
	html[lang="ja"] .price-unit, 
	html[lang="ca"] .price-unit { display: inline-block; }
}

@media (max-width: 890px) and (min-width: 831px) {
  html[lang="pt"] .price-unit { display: none; }
}

@media (max-width: 880px) {
	html[lang="it"] .pg_idex .nav-wrapper, 
	html[lang="tr"] .pg_idex .nav-wrapper, 
	html[lang="ar"] .pg_idex .nav-wrapper, 
	html[lang="vi"] .pg_idex .nav-wrapper, 
	html[lang="th"] .pg_idex .nav-wrapper, 
	html[lang="nl"] .pg_idex .nav-wrapper, 
	html[lang="ro"] .pg_idex .nav-wrapper, 
	html[lang="et"] .pg_idex .nav-wrapper, 
	html[lang="hu"] .pg_idex .nav-wrapper, 
	html[lang="sr"] .pg_idex .nav-wrapper { display: none; }
	
	html[lang="it"] .price-unit, 
	html[lang="tr"] .price-unit, 
	html[lang="ar"] .price-unit, 
	html[lang="vi"] .price-unit, 
	html[lang="th"] .price-unit, 
	html[lang="nl"] .price-unit, 
	html[lang="ro"] .price-unit, 
	html[lang="et"] .price-unit, 
	html[lang="hu"] .price-unit, 
	html[lang="sr"] .price-unit { display: inline-block; }
}

@media (max-width: 870px) {
	html[lang="bg"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 860px) {
	html[lang="de"] .pg_idex .nav-wrapper, html[lang="pl"] .pg_idex .nav-wrapper, 
	html[lang="cs"] .pg_idex .nav-wrapper, html[lang="da"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 850px) {
	html[lang="id"] .pg_idex .nav-wrapper,
	html[lang="no"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 850px) and (min-width: 821px) {
	html[lang="ko"] .price-unit { display: none; }
}

@media (max-width: 840px) and (min-width: 771px) {
  html[lang="en"] .price-unit { display: none; }
}

@media (max-width: 850px) and (min-width: 831px) {
	html[lang="sv"] .price-unit { display: none; }
}

@media (max-width: 840px) {
	html[lang="he"] .pg_idex .nav-wrapper, html[lang="zh"] .pg_idex .nav-wrapper, html[lang="zh-CN"] .pg_idex .nav-wrapper { display: none; }
	
	html[lang="he"] .price-unit, html[lang="zh"] .price-unit,
	html[lang="zh-CN"] .price-unit { display: inline-block; }
}

@media (max-width: 840px) and (min-width: 821px) {
	html[lang="fr"] .price-unit { display: none; }
}

@media (max-width: 830px) {
	html[lang="sv"] .pg_idex .nav-wrapper,
	html[lang="hi"] .pg_idex .nav-wrapper,
	html[lang="pt"] .pg_idex .nav-wrapper{ display: none; }
}

@media (max-width: 820px) {
  .review-slide p { font-size: 0.85rem; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  
	html[lang="ko"] .pg_idex .nav-wrapper,	
	html[lang="es"] .pg_idex .nav-wrapper,
  	html[lang="fr"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 820px) {
	html[lang="ru"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 770px) {
  html[lang="en"] .pg_idex .nav-wrapper { display: none; }
}

@media (max-width: 720px) {
  .review-slide p { font-size: 0.78rem; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 20px; }
}

@media (max-width: 600px) {
	.review-slide p { font-size: 0.65rem; }
	.contact-form .form-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.form-status {
		position: static;
		transform: none;
		margin-top: 0.5rem;
		width: 100%;
  	}
}

@media (max-width: 540px) { 
	html[lang="en"] .nav-link.nav-title .full-text  { display: none; }
	html[lang="en"] .nav-link.nav-title::after { content: "Trade panel"; }
}
	
@media (max-width: 470px) { 
	html[lang="th"] .nav-link.nav-title .full-text { display: none; }

	html[lang="th"] .nav-link.nav-title::after { content: "แผงเทรด"; }
}

@media (max-width: 460px) { 	
	html[lang="ru"] .nav-link.nav-title { display: none; }
	
	html[lang="ko"] .nav-link.nav-title .full-text { display: none; }
	html[lang="ko"] .nav-link.nav-title::after { content: "무역 패널"; }	
}

@media (max-width: 430px) { 
	html[lang="el"] .price-unit { display: none; }	
}

@media (max-width: 410px) { 
	html[lang="de"] .price-unit,
	html[lang="ru"] .price-unit { display: none; }
	
	.nav-link.nav-title { font-size: 0.9em;  padding: 8px 10px; }
}

@media (max-width: 400px) { 	
	html[lang="zh"] .price-unit, html[lang="zh-CN"] .price-unit, 
	html[lang="ca"] .price-unit, html[lang="sk"] .price-unit, 
	html[lang="ja"] .price-unit, html[lang="cs"] .price-unit,
	html[lang="id"] .price-unit, html[lang="hu"] .price-unit,
	html[lang="et"] .price-unit,
	html[lang="ro"] .price-unit { display: none; }
	
}

@media (max-width: 390px) {  
	html[lang="tr"] .price-unit,
	html[lang="pl"] .price-unit,
	html[lang="pt"] .price-unit  { display: none; }
}

@media (max-width: 380px) {  
	html[lang="th"] .price-unit,
	html[lang="sr"] .price-unit,
	html[lang="it"] .price-unit, 
	html[lang="nl"] .price-unit,
	html[lang="es"] .price-unit,
	html[lang="ar"] .price-unit, 
	html[lang="vi"] .price-unit, 
	html[lang="sv"] .price-unit, 
	html[lang="he"] .price-unit { display: none; }
}

@media (max-width: 360px) { 
	html[lang="da"] .price-unit, 
	html[lang="bg"] .price-unit, 
	html[lang="no"] .price-unit, 
	html[lang="fi"] .price-unit, 
	html[lang="ko"] .price-unit, 
	html[lang="fr"] .price-unit,
	html[lang="en"] .price-unit,
	html[lang="hi"] .price-unit { display: none; }
}
	
@media (max-width: 300px) { 	
	html[lang="es"] .cta-full-text-mt5,
	html[lang="ro"] .cta-full-text-mt5 { display: none; }
    
	html[lang="es"] .nav-link.cta.mt5::after,
	html[lang="ro"] .nav-link.cta.mt5::after { content: "MT5"; }
}

@media (max-width: 290px) { 	
	html[lang="el"] .cta-full-text-mt5, 
	html[lang="tr"] .cta-full-text-mt5 { display: none; }
    
	html[lang="el"] .nav-link.cta.mt5::after, 
	html[lang="tr"] .nav-link.cta.mt5::after { content: "MT5"; }
}

@media (max-width: 295px) { 	
	html[lang="pt"] .cta-full-text-mt5 { display: none; }
    
	html[lang="pt"] .nav-link.cta.mt5::after { content: "MT5"; }
}

@media (max-width: 290px) { 	
	html[lang="en"] .cta-full-text-mt4,
	html[lang="zh"] .cta-full-text-mt4, 
	html[lang="zh-CN"] .cta-full-text-mt4 { display: none; }
    
	html[lang="en"] .nav-link.cta.mt4::after,
	html[lang="zh"] .nav-link.cta.mt4::after,
	html[lang="zh-CN"] .nav-link.cta.mt4::after { content: "MT4"; }
	
	html[lang="it"] .cta-full-text-mt5, 
	html[lang="zh"] .cta-full-text-mt5,
	html[lang="zh-CN"] .cta-full-text-mt5,
	html[lang="hu"] .cta-full-text-mt5, 
	html[lang="ca"] .cta-full-text-mt5 { display: none; }
    
	html[lang="it"] .nav-link.cta.mt5::after,
	html[lang="zh"] .nav-link.cta.mt5::after,
	html[lang="zh-CN"] .nav-link.cta.mt5::after,
	html[lang="hu"] .nav-link.cta.mt5::after,
	html[lang="ca"] .nav-link.cta.mt5::after {
		content: "MT5";
	}
}

@media (max-width: 290px) { 	
	.nav-link.cta.mt5 .cta-full-text-mt5 { display: none; }
	.nav-link.cta.mt5::after { content: "MT5"; }
}

@media (max-width: 200px) { 
	.price-amount { display: none !important; } 		
}

html[dir="rtl"] .lang-item .flag {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .lang-current .flag {
  margin-right: 0;
  margin-left: 6px;
}



/* ------------------------------------------Manual html page -------- */
.manual-content {
  padding: 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.manual-content .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.manual-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  transition: all 0.25s ease-in-out;
  width: 100%;
  box-sizing: border-box;
	overflow: hidden;
	max-width: 100%;
	
}

.manual-intro,
.manual-links {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  width: 100%;
  box-sizing: border-box;
}

.manual-content h1 {
  font-size: 28px;
  margin: 0 0 1rem 0;
  text-align: center;
  color: #fff;
}

.manual-content .lead {
  color: #cfd8e3;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
  max-width: 900px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.1em;
}

.manual-section:hover {
  box-shadow: 0 8px 24px rgba(2,6,23,0.8); 
}

.manual-section:last-child {
  margin-bottom: 0;
}

.manual-section h2 {
  font-size: 1.5em;
  margin: 0 0 1rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.manual-section h3 {
  font-size: 1.2em;
  margin: 1.5rem 0 1rem 0;
  text-align: left;
  display: block !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.manual-section h3:first-child {
  margin-top: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}


.manual-links h3 {
  margin: 0 0 1rem 0;
  color: #fff;
  font-size: 1.3em;
}

.manual-links .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.manual-links .card {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease-in-out;
}

.manual-links .card:hover {
  transform: translateY(-2px); 
}

.manual-links .card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1em;
}

.manual-links .card p {
  margin: 0;
  font-size: 0.9em;
  color: #cfd8e3;
}

.manual-links .card a {
  color: #6ee7b7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.manual-links .card a:hover {
  color: #b8ffd6;
  text-decoration: underline;
}


.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.shortcuts-grid .card {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s ease-in-out;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.shortcuts-grid .card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.shortcuts-grid .card h4 {
  margin: 0 0 0.8rem 0;
  color: #6ee7b7;
  font-size: 1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.shortcuts-grid .card ul {
  margin: 0;
  padding-left: 1.2rem;
  overflow: hidden;
}

.shortcuts-grid .card li {
  margin-bottom: 0.4rem;
  font-size: 0.9em;
  color: #cfd8e3;
  line-height: 1.4;
  word-break: break-word; 
  hyphens: auto;
	
}

.shortcuts-grid .card li:last-child {
  margin-bottom: 0;
}


.shortcuts-grid ul {
  list-style: none;
  padding-left: 0;
}

.shortcuts-grid li {
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.9em;
  color: #cfd8e3;
  line-height: 1.4;
  break-inside: avoid;
  padding-left: 1.2rem;
}

.shortcuts-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: bold;
}



.zoomable-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
  display: block;
	position: relative;
}

.manual-image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: center;
  -webkit-object-fit: contain;
  -webkit-object-position: center;
  min-width: 0;
  flex-shrink: 1;
}

.manual-image {
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: block;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
}

.manual-image a {
  display: block;
  transition: transform 0.25s ease;
	max-width: 100%;
}

.manual-image a:hover {
  transform: scale(1.02);
}


.image-container {
  position: relative;
  display: block;
  max-width: 100%;
}


.zoomable-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


.image-container:hover .zoom-hint {
  opacity: 1;
}



/* For contenet of manual */
.manual-section p {
  margin: 0 0 1rem 0;
  color: #cfd8e3;
  line-height: 1.6;
}

.manual-section p:last-child {
  margin-bottom: 0;
}

.manual-section ol,
.manual-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: #cfd8e3;
}

.manual-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.manual-section li:last-child {
  margin-bottom: 0;
}

.manual-section b {
  color: #fff;
  font-weight: 600;
}

.manual-section a {
  color: #6ee7b7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.manual-section a:hover {
  color: #b8ffd6;
  text-decoration: underline;
}






/* all-width card */
.full-width-card {
  grid-column: 1 / -1; /* tool all 3 cols */
  width: 100%;
}

.full-width-card ul {
  columns: 3;
  column-gap: 2rem;
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}

.full-width-card li {
  margin-bottom: 0.6rem;
  font-size: 0.9em;
  color: #cfd8e3;
  line-height: 1.4;
  break-inside: avoid;
  padding-left: 0.5rem;
}

.full-width-card h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.8rem;
  text-align: center;
}

.full-width-card ul {
  columns: 3;
  column-gap: 2rem;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.full-width-card li {
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.9em;
  color: #cfd8e3;
  line-height: 1.4;
  break-inside: avoid;
  padding-left: 1.2rem;
}

.full-width-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: bold;
}



.feature-note {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.feature-note h4 {
  margin: 0 0 0.8rem 0;
  font-size: 1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}






.inline-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.inline-nav-btn-70 {
  color: #6ee7b7;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.25s ease-in-out;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.1), rgba(110, 231, 183, 0.05));
  border: 1px solid rgba(110, 231, 183, 0.3);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  min-width: 70px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.inline-nav-btn-70:hover {
  color: #b8ffd6;
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.2), rgba(110, 231, 183, 0.1));
  border-color: rgba(110, 231, 183, 0.5);
  box-shadow: 0 4px 15px rgba(110, 231, 183, 0.25);
  transform: translateY(-1px);
}

.inline-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.inline-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 12px; /* Between button and descr */
}





/* Modal window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
	visibility: hidden;
  cursor: zoom-out;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  cursor: default;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-close:hover {
  background: rgba(0,0,0,0.7);
}

.nav-link.cta {
    text-decoration: none !important;
}

.nav-link.cta:hover {
    text-decoration: none !important;
}



/* Premium CTA */
.premium-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.nav-link.cta.premium-cta {
    color: #b8ffd6 !important;
    background: linear-gradient(135deg, 
        rgba(110, 231, 183, 0.15), 
        rgba(110, 231, 183, 0.08));
    border: 1px solid rgba(110, 231, 183, 0.4);
    box-shadow: 
        0 4px 18px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(110, 231, 183, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 20px;
    min-width: 180px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.nav-link.cta.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.nav-link.cta.premium-cta:hover {
    transform: translateY(-4px);
    color: #ffffff !important;
    background: linear-gradient(135deg, 
        rgba(110, 231, 183, 0.25), 
        rgba(110, 231, 183, 0.15));
    border-color: rgba(110, 231, 183, 0.7);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(110, 231, 183, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link.cta.premium-cta:hover::before {
    left: 100%;
}

.cta-main {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 2px;
}


.key-benefits {
  	margin-bottom: 60px;
	margin-top: 10px;
}

.key-benefits .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.key-benefits .card {
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
}

.key-benefits .card h3 {
  margin: 0 0 16px 0;
  font-size: 1.2em;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.key-benefits .card p {
  margin: 0 0 12px 0;
  color: #cfd8e3;
  line-height: 1.6;
  flex: 1;
}

.key-benefits .card p:last-child {
  margin-bottom: 0;
}

.key-benefits .card p strong {
  color: #fff;
}

/* Card H in row */
.key-benefits .grid {
  align-items: stretch;
}

/* gap after section */
.key-benefits + * {
  margin-top: 40px;
}

.key-benefits .card h3 .lucide-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Smaller distance between hero and key-benefits */
#home.features.hero {
    margin-bottom: 20px;
    padding-bottom: 0;
}




/* Wrap card with instruction */
.manual-cta-wrapper {
  margin-bottom: 1rem;
  width: 100%;
}

.manual-cta-wrapper .card {
  width: 100%;
  max-width: none;
}

/* Check if card is all-width */
.manual-cta-wrapper .manual-cta {
  width: 100%;
  box-sizing: border-box;
}



@media (max-width: 1024px) {
  .full-width-card ul {/* for 3-col card */
    columns: 2;
    column-gap: 1.5rem;
  }
	
  .full-width-card ul {
    columns: 2;
    column-gap: 1.5rem;
  }
}

@media (max-width: 768px) {
	.shortcuts-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	
	.shortcuts-grid .card li {
    	font-size: 0.85em;
    	padding-left: 1rem;
  	}

	.premium-buttons {
	 	flex-direction: column;
		align-items: center;
	}

	.nav-link.cta.premium-cta {
		min-width: 200px;
		width: 100%;
		max-width: 250px;
	}
	
	.full-width-card { grid-column: 1; } /* for 3-col card */

	.full-width-card ul { columns: 1; column-gap: 0; }
	
	.manual-content { padding: 1.5rem 0; }

	.manual-section {
		margin-bottom: 1.5rem;
		padding: 1.2rem;
	  }

	  .manual-intro,
	  .manual-links {
		margin-bottom: 1.5rem;
		padding: 1.2rem;
	  }

	  .manual-links .grid,
	  .shortcuts-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	  }

	  .manual-content h1 {
		font-size: 24px;
	  }

	  .manual-section h2 {
		font-size: 1.3em;
	  }

	  .manual-section h3 {
		font-size: 1.1em;
	  }

	  .key-benefits .grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 30px;
	  }

	  .key-benefits .card {
		padding: 20px;
	  }

	  .key-benefits { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  	.full-width-card ul {
  	  	columns: 1;
  	}
	
	.nav-link.cta.premium-cta {
        padding: 12px 16px;
        min-width: 160px;
    }
    
    .cta-main { font-size: 1em; }
	
	.manual-section {
    	padding: 1rem;
  }
  
  .manual-intro,
  .manual-links {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .manual-links .grid,
  .shortcuts-grid {
    gap: 0.6rem;
  }
  
  .manual-content h1 {
    font-size: 22px;
  }
  
  .manual-section h2 {
    font-size: 1.2em;
  }
  
  .manual-section h3 { font-size: 1em; }
  
  .manual-section ol,
  .manual-section ul {
    padding-left: 1.2rem;
  }

  .key-benefits .grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .key-benefits .card {
    padding: 16px;
  }
  
  .key-benefits .card h3 {
    font-size: 1.1em;
  }
  
  .key-benefits {
    margin-bottom: 30px;
  }
}


/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

.burger-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.burger-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.burger-lang-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}

.burger-lang-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.burger-lang-backdrop.active ~ .burger-nav,
.burger-lang-backdrop.active ~ .burger-actions {
  opacity: 0.4;
  filter: brightness(0.6);
  pointer-events: none;
  transition: all 0.3s ease;
}

.burger-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(15, 17, 19, 0.95),
    rgba(11, 12, 14, 0.98)
  );
  gap: 10px; 
  position: relative;
}


.burger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: center; /* by vertical */
  order: 1; /* 1st elemtnt at the left */
  /*margin-right: auto;*/
  margin-left: 0;
  position: absolute;
  left: 0px;
}

html[dir="rtl"] .burger-toggle {
 order: 99; /* last element */
}

.burger-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger-toggle:hover span {
  background: #6ee7b7;
}

.burger-toggle:hover {
  transform: scale(1.1);
}

.burger-toggle.active:hover {
  transform: scale(1.1) rotate(90deg);
}

.burger-menu {
  visibility: hidden;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--header-height));
  background: var(--bg);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
  border-bottom: none;
  box-shadow: 
    0 0 0 1px rgba(110, 231, 183, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.burger-menu.active {
  visibility: visible;
  transform: translateX(0);
  border-top: 1px solid rgba(110, 231, 183, 0.3);
  box-shadow: 
    0 0 0 1px rgba(110, 231, 183, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.burger-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 768px) and (min-aspect-ratio: 1/1) {
  .burger-nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.burger-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #eef2f5;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.burger-actions .nav-link {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #eef2f5;
  font-size: 12px ;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.burger-contact .icon {
  margin: 0 !important;
}


.nav-link.external-link {
  color: #6ee7b7;
  /*background: linear-gradient(90deg, rgba(110, 231, 183, 0.1), rgba(110, 231, 183, 0.05)); */
  border-color: rgba(110, 231, 183, 0.2);
}

html[dir="rtl"] .external-link .icon {
  margin-right: 0;
  margin-left: 8px;
}

.nav-link.external-link.active {
  /*background: linear-gradient(135deg, rgba(110, 231, 183, 0.15), rgba(110, 231, 183, 0.08)) !important; */
  border-color: rgba(110, 231, 183, 0.4) !important;
  color: #b8ffd6 !important;
}

.nav-link.external-link:hover {
  background: linear-gradient(90deg, rgba(110, 231, 183, 0.15), rgba(110, 231, 183, 0.08));
  border-color: rgba(110, 231, 183, 0.4);
}

.burger-nav .external-link {
  grid-column: 1 / -1;
  border: 1px solid rgba(110, 231, 183, 0.2) !important;
  color: #6ee7b7 !important;
}

.burger-nav .external-link:hover {
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.12), rgba(110, 231, 183, 0.06)) !important;
  border-color: rgba(110, 231, 183, 0.4) !important;
}

.burger-actions-ss {
  margin-top: auto;
}

.burger-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.burger-actions {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
  padding-top: 0;
  height: 40px;
}


.burger-contact {
  flex-shrink: 0;
}

.burger-lang {
	height: 100%;	
	flex: 1 1 auto; 
  	min-width: 0;
	display: flex;
}

.burger-lang-dropdown {
  position: relative;
  width: 100%;
  z-index: 1002;
	margin-left: auto;
	height: 100%;
	display: flex;
}

.burger-lang-current {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
	height: 100%;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
.burger-lang-current:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(110, 231, 183, 0.3);
}

.burger-lang-current .flag {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

.burger-lang-current .label {
  flex: 1;
  text-align: left;
}

.burger-lang-current .arrow {
  margin-left: 6px;
  opacity: 0.7;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.burger-lang-dropdown.active .burger-lang-current .arrow {
  transform: rotate(180deg);
}

.burger-lang-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px;
  overflow-y: auto;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1002;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	max-height: 200px;
}

.burger-lang-dropdown.active .burger-lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.burger-lang-item .flag {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

.burger-lang-item:hover {
  background: #333;
  color: #fff;
}

.burger-lang-item.active {
  background: #3b3b3b;
  color: #fff;
  font-weight: 600;
  border-left: 3px solid #00ffa3;
}*/

.burger-lang-menu::-webkit-scrollbar {
  width: 6px;
}

.burger-lang-menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.burger-lang-menu::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-height: 500px) {
  .burger-lang-menu { max-height: 200px; }
}

@media (max-width: 480px) {
  .burger-toggle {
    width: 22px;
    height: 16px;
  }
  
  .header-inner { gap: 12px; }
}

.burger-toggle.touch-active span,
.burger-lang-current.touch-active {
  background-color: #6ee7b7 !important;
}

.burger-toggle:not(.active) span {
  background-color: #fff !important;
}

.burger-toggle span {
  background-color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.burger-toggle.active span {
  background-color: #6ee7b7;
}

.burger-lang-dropdown.active .burger-lang-current {
  border-color: rgba(110, 231, 183, 0.3);
}

.burger-lang-dropdown:not(.active) .burger-lang-current {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.burger-lang-dropdown:not(.active) .burger-lang-current:hover {
  border-color: rgba(110, 231, 183, 0.3) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.burger-lang-dropdown.active .burger-lang-current {
  border-color: rgba(110, 231, 183, 0.5) !important;
  background: rgba(110, 231, 183, 0.1) !important;
}

.burger-lang-dropdown:not(.active) .burger-lang-current.touch-active {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.burger-lang-dropdown:not(.active) .burger-lang-current:active,
.burger-lang-dropdown:not(.active) .burger-lang-current:focus,
.burger-lang-dropdown:not(.active) .burger-lang-current:focus-visible {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  outline: none !important;
}

@supports (-webkit-touch-callout: none) {
  .burger-toggle,
  .burger-lang-current {
    -webkit-tap-highlight-color: transparent;
  }
  
  .burger-toggle:active span,
  .burger-lang-current:active {
    background-color: #6ee7b7 !important;
  }
	
  .burger-lang-dropdown:not(.active) .burger-lang-current:active {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }
}