:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #77d3ff;
  --accent-2: #a78bfa;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --shadow-2: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 16px;
  --radius-sm: 12px;
  --ring: rgba(119, 211, 255, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans",
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(1000px 700px at 12% 0%, rgba(119, 211, 255, 0.25), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(167, 139, 250, 0.2), transparent 50%), var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 420px at 16% 14%, rgba(119, 211, 255, 0.08), transparent 60%),
    radial-gradient(600px 420px at 82% 18%, rgba(167, 139, 250, 0.08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px);
  opacity: 0.22;
  mix-blend-mode: overlay;
}

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

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 10px;
}

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

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 18, 32, 0.92);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.7);
  backdrop-filter: blur(12px);
}

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

.brand-title {
  font-weight: 750;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-link-active {
  border-color: rgba(119, 211, 255, 0.45);
  background: linear-gradient(135deg, rgba(119, 211, 255, 0.2), rgba(167, 139, 250, 0.14));
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.pill-active {
  background: linear-gradient(135deg, rgba(119, 211, 255, 0.25), rgba(167, 139, 250, 0.18));
  border-color: rgba(119, 211, 255, 0.45);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.section {
  padding: 44px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.18;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-h {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.2px;
}

.section-h::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(119, 211, 255, 0.85), rgba(167, 139, 250, 0.75));
  opacity: 0.7;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 78ch;
}

h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  letter-spacing: 0.2px;
}

h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

p {
  margin: 0 0 14px;
}

.hero {
  padding-top: 34px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto 0;
  height: 460px;
  pointer-events: none;
  background: radial-gradient(420px 320px at 22% 10%, rgba(119, 211, 255, 0.22), transparent 60%),
    radial-gradient(420px 320px at 78% 10%, rgba(167, 139, 250, 0.18), transparent 60%);
  filter: blur(8px);
  opacity: 0.9;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(119, 211, 255, 0.14);
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0.2px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  min-width: 140px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-primary {
  border-color: rgba(119, 211, 255, 0.45);
  background: linear-gradient(135deg, rgba(119, 211, 255, 0.24), rgba(167, 139, 250, 0.16));
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
}

.stat-value {
  font-weight: 780;
  letter-spacing: 0.2px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.hero-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.hero-card-title {
  font-weight: 740;
  margin-bottom: 10px;
}

.checklist {
  margin: 0;
  padding-inline-start: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.checklist li {
  margin: 8px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(255, 255, 255, 0.18);
}

.card-soft {
  background: rgba(255, 255, 255, 0.025);
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.card-text {
  margin: 0 0 12px;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-inline-start: 20px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: var(--radius);
  padding-top: 14px;
  padding-bottom: 14px;
  padding-inline-end: 16px;
}

.list li {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.86);
}

.list-compact {
  padding-top: 12px;
  padding-bottom: 12px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.quote {
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 8px;
  inset-inline-start: 12px;
  font-size: 48px;
  line-height: 1;
  color: rgba(119, 211, 255, 0.35);
}

.quote-text {
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.88);
}

.quote-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.quote-name {
  color: rgba(255, 255, 255, 0.88);
}

.faq-wrap {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faq {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.faq-q {
  cursor: pointer;
  font-weight: 650;
}

.faq-a {
  color: var(--muted);
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
  text-decoration: none;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.mini-title {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.mini-value {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.icon {
  color: rgba(255, 255, 255, 0.86);
  flex: 0 0 auto;
}

.form {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 12px;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.input:focus {
  outline: none;
  border-color: rgba(119, 211, 255, 0.35);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 0 0 4px rgba(119, 211, 255, 0.12);
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.footer-meta {
  margin-top: 2px;
}

.footer-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.65;
}

.trusted {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html[dir="rtl"] .trusted-label {
  text-transform: none;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clients-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: calc(var(--radius) + 4px);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.clients-wrap .logos {
  justify-content: center;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  min-height: 36px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.logo-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.client-logo {
  height: 18px;
  width: auto;
  display: block;
  filter: grayscale(1) contrast(1.2) brightness(1.15);
  opacity: 0.9;
}

.logo-text {
  white-space: nowrap;
}

.logo-chip-has-img .logo-text {
  display: none;
}

.cta-strip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(119, 211, 255, 0.14), rgba(167, 139, 250, 0.1));
  border-radius: calc(var(--radius) + 4px);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(500px 260px at 15% 40%, rgba(119, 211, 255, 0.22), transparent 60%),
    radial-gradient(520px 280px at 80% 20%, rgba(167, 139, 250, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.cta-copy {
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}

.cta-title {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 72ch;
}

@media (max-width: 560px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .nav-link {
    flex: 1;
    justify-content: center;
  }

  .lang-toggle {
    width: 100%;
  }

  .pill {
    flex: 1;
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
