* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050816;
  color: #ecf0f1;
  line-height: 1.7;
}
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="ltr"] body { direction: ltr; text-align: left; }
a { text-decoration: none; color: inherit; }
header {
  background: rgba(5, 8, 22, 0.96);
  backdrop-filter: blur(10px);
  color: #ecf0f1;
  padding: 14px 0;
  border-bottom: 1px solid rgba(236, 240, 241, 0.08);
  position: sticky; top: 0; z-index: 20;
}
.container { width: min(1120px, 94%); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.logo { font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.logo img { height: 46px; border-radius: 999px; }
.logo span { display: block; font-size: 0.78rem; opacity: 0.8; }
nav ul { display: flex; flex-wrap: wrap; list-style: none; gap: 10px; }
nav a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
nav a:hover, nav a.active {
  background: #00b894;
  color: #050816;
  transform: translateY(-1px);
}
.lang-switch a { border: 1px solid rgba(236, 240, 241, 0.6); }
.hero {
  padding: 40px 0 28px;
  background: radial-gradient(circle at top left, #00b89422, transparent 55%),
              radial-gradient(circle at bottom right, #00cec922, transparent 55%);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr); gap: 24px; align-items: center; }
.hero-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(236, 240, 241, 0.06);
}
.hero h1 { font-size: 1.9rem; margin-bottom: 10px; }
.hero p { font-size: 0.98rem; opacity: 0.92; }
.hero-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(236, 240, 241, 0.06);
  border: 1px solid rgba(0, 184, 148, 0.65);
}
.hero-side-box { position: relative; }
.hero-chip {
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 184, 148, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 184, 148, 0.6);
}
.hero-monitor {
  background: radial-gradient(circle at top, #00b89433, #050816);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(236, 240, 241, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}
.hero-monitor img { width: 100%; border-radius: 12px; display: block; }
.hero-monitor small { display: block; margin-top: 6px; font-size: 0.76rem; opacity: 0.8; }
.page { padding: 30px 0 40px; }
.section {
  margin-bottom: 24px;
  background: radial-gradient(circle at top left, #00b89409, #020617);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
}
.section h2 { font-size: 1.25rem; margin-bottom: 10px; color: #e5f9ff; }
.section h3 { font-size: 1.02rem; margin: 12px 0 5px; color: #a5f3fc; }
.section p { margin-bottom: 6px; font-size: 0.94rem; color: #e2e8f0; }
.section ul { margin-right: 18px; margin-top: 5px; list-style: disc; font-size: 0.93rem; color: #e2e8f0; }
.section li { margin-bottom: 4px; }
.badge {
  display: inline-block;
  font-size: 0.78rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 184, 148, 0.15);
  color: #e5f9ff;
  border: 1px solid rgba(0, 184, 148, 0.6);
  margin-bottom: 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 14px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.card h3 { font-size: 0.98rem; margin-bottom: 6px; color: #e5f9ff; }
.card p { font-size: 0.9rem; color: #e2e8f0; }
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 14px 0;
  font-size: 0.82rem;
  margin-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.footer a { color: #e5f9ff; opacity: 0.9; }
.contact-list { list-style: none; font-size: 0.92rem; }
.contact-list li { margin-bottom: 6px; }
form { display: grid; gap: 10px; margin-top: 10px; }
input, textarea {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  outline: none;
  background: rgba(15, 23, 42, 0.95);
  color: #e2e8f0;
}
input::placeholder, textarea::placeholder { color: #64748b; }
textarea { min-height: 110px; resize: vertical; }
button {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.95rem;
  cursor: pointer;
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: #020617;
  font-weight: 600;
}
button:hover { opacity: 0.94; }
.responsive-img { width: 100%; border-radius: 12px; margin-bottom: 14px; }
.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.brand-logo {
  height: 28px;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 6px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; }
}
