:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6877;
  --line: #d9e0ea;
  --panel: #ffffff;
  --soft: #eef6ff;
  --blue: #2457d6;
  --blue-dark: #173d99;
  --green: #21a67a;
  --amber: #ffb020;
  --shadow: 0 20px 55px rgba(31, 41, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7fafc;
  color: var(--ink);
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid rgba(217, 224, 234, 0.78);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(36, 87, 214, 0.22);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.navlinks a[aria-current="page"],
.navlinks a:hover {
  color: var(--blue);
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language select {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  outline: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(33, 166, 122, 0.16), transparent 28%),
    linear-gradient(145deg, #f7fbff 0%, #eef6ff 54%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
  padding: 58px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  color: #3e4857;
  font-size: 20px;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 87, 214, 0.24);
}

.button.secondary {
  background: #fff;
  color: var(--blue-dark);
  border-color: var(--line);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
}

.phone-stage {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 18px;
}

.phone-frame {
  padding: 10px;
  border-radius: 28px;
  background: #101827;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  border-radius: 18px;
}

.phone-frame.secondary-shot {
  transform: translateY(44px);
  opacity: 0.92;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
}

.card p,
.copy p,
.faq p {
  color: var(--muted);
}

.iconmark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.copy li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #303948;
  font-weight: 650;
}

.copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

[dir="rtl"] .copy li {
  padding-left: 0;
  padding-right: 28px;
}

[dir="rtl"] .copy li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .eyebrow::before {
  order: 2;
}

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

.screen {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.screen img {
  width: 100%;
  border-radius: 6px;
}

.article {
  max-width: 850px;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 18px;
}

.article ul {
  padding-left: 22px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}

.cta {
  padding: 68px 0;
  color: #fff;
  background: linear-gradient(135deg, #163d99, #2457d6 62%, #1f9a78);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.footer {
  padding: 34px 0;
  background: #101827;
  color: rgba(255, 255, 255, 0.72);
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 0;
  }

  .navlinks {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .language {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero-grid {
    min-height: 0;
    gap: 36px;
  }

  .phone-stage {
    max-width: 520px;
  }

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

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .phone-stage {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .phone-frame {
    border-radius: 20px;
    padding: 7px;
  }

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

  .section {
    padding: 58px 0;
  }
}
