:root {
  --bg: #070a14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.04);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --primary: #4f8cff;
  --primary-2: #a855f7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 600px at 80% 10%, rgba(79, 140, 255, 0.28), transparent 60%),
    radial-gradient(900px 500px at 20% 0%, rgba(168, 85, 247, 0.18), transparent 60%),
    linear-gradient(180deg, #060814, #070a14 35%, #070a14);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.95), rgba(168, 85, 247, 0.85));
  color: #050814;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__link {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(79, 140, 255, 0.45);
}

.lang-toggle:active {
  transform: translateY(0);
}

.hero {
  padding: 56px 0 28px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(79, 140, 255, 0.35);
  background: rgba(79, 140, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-weight: 700;
  margin: 0 0 14px;
}

.hero__title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: 0.1px;
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.92), rgba(168, 85, 247, 0.72));
  border-color: rgba(79, 140, 255, 0.55);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.06);
}

.hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.hero__card {
  display: flex;
  justify-content: center;
}

.card {
  width: min(420px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.9;
}

.dot--red {
  background: #ff5f57;
}

.dot--yellow {
  background: #febc2e;
}

.dot--green {
  background: #28c840;
}

.card__body {
  padding: 18px 18px 20px;
}

.card__kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.card__headline {
  margin: 6px 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.card__pill {
  margin-top: 14px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section {
  padding: 42px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__title {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: 0.1px;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.feature__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.feature__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.stores {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  transition: transform 120ms ease, border-color 160ms ease, background 160ms ease;
}

.store:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 140, 255, 0.5);
}

.store__label {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.store__meta {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.contact__item {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.contact__label {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact__value {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.footer__right {
  display: flex;
  gap: 12px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

html[dir="rtl"] .header__inner,
html[dir="rtl"] .footer__inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .cta {
  justify-content: flex-start;
}

html[dir="ltr"] .cta {
  justify-content: flex-start;
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav {
    display: none;
  }
}
