:root {
  --ink: #06142f;
  --muted: #65738c;
  --brand: #075bff;
  --brand2: #08dce9;
  --green: #00a98f;
  --gold: #d6a64f;
  --soft: #f4f8ff;
  --soft2: #eefbff;
  --line: #d9e7f4;
  --white: #fff;
  --navy: #00143f;
  --deep: #061225;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 34, 96, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0, #fff 520px),
    #fff;
  line-height: 1.7;
}

body.modal-locked {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.offerbar {
  background: linear-gradient(90deg, #005f55, #008f82);
  color: #fff;
  text-align: center;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(217, 231, 244, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 40px rgba(7, 32, 73, .08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: 145px;
  height: auto;
}

.brandmark {
  display: none;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  position: relative;
  color: #33435f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background: var(--brand2);
  transition: width .22s ease;
}

.nav nav a:hover::after {
  width: 100%;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(217, 231, 244, .92);
  border-radius: 999px;
  background: rgba(244, 248, 255, .82);
}

.language-switch a {
  min-width: 36px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #5b6b86;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}

.language-switch a.active {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
}

.btn {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #02bed9);
  color: #fff;
  padding: 13px 24px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(7, 91, 255, .22);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(7, 91, 255, .28);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.ghost {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 91, 255, .18);
  color: var(--navy);
  box-shadow: none;
}

.ghost:hover {
  border-color: rgba(7, 91, 255, .45);
  box-shadow: 0 14px 34px rgba(0, 34, 96, .1);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 58px;
  padding-top: 74px;
  padding-bottom: 86px;
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  background: #e9f4ff;
  border: 1px solid rgba(7, 91, 255, .08);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.16;
  margin: 0 0 20px;
  letter-spacing: 0;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 22px;
}

.trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #33435f;
  font-size: 13px;
  font-weight: 700;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 231, 244, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
}

.trust span::before,
.start-points li::before,
.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.product-stage {
  position: relative;
  height: 510px;
  isolation: isolate;
}

.stage-panel {
  position: absolute;
  inset: 16px 30px 28px 18px;
  border: 1px solid rgba(8, 220, 233, .22);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(7, 91, 255, .11), rgba(8, 220, 233, .13)),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(241, 250, 255, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), var(--shadow);
  transform: rotate(-2deg);
  z-index: -1;
}

.laptop {
  position: absolute;
  top: 64px;
  left: 0;
  width: 88%;
  height: 340px;
  background: #fff;
  border: 8px solid #18243a;
  border-radius: 22px;
  box-shadow: 0 34px 80px rgba(0, 20, 63, .24);
  overflow: hidden;
  direction: ltr;
}

.laptop-top {
  height: 34px;
  background: #eef3f8;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
}

.laptop-top i {
  width: 8px;
  height: 8px;
  background: #b4bfce;
  border-radius: 50%;
}

.laptop-top b {
  margin-left: auto;
  margin-right: auto;
  font-size: 10px;
  color: #65738c;
  direction: rtl;
}

.dash {
  height: calc(100% - 34px);
  display: flex;
  background: #f7fbff;
}

.dash aside {
  width: 58px;
  background: linear-gradient(180deg, var(--deep), #0b2449);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 20px;
}

.dash aside strong {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.dash aside i {
  width: 18px;
  height: 5px;
  background: rgba(255, 255, 255, .26);
  border-radius: 8px;
}

.dash-body {
  flex: 1;
  padding: 26px;
}

.dash-title {
  font-weight: 800;
  font-size: 16px;
  direction: rtl;
  text-align: right;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 20px 0;
}

.metric-row div {
  padding: 13px;
  background: #fff;
  border: 1px solid #e8f0f7;
  border-radius: 12px;
  direction: rtl;
  box-shadow: 0 10px 22px rgba(0, 34, 96, .05);
}

.metric-row small {
  display: block;
  color: #72809a;
  font-size: 10px;
}

.metric-row b {
  font-size: 15px;
}

.chart {
  height: 124px;
  background: #fff;
  border: 1px solid #e8f0f7;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: end;
  gap: 18px;
  box-shadow: 0 10px 22px rgba(0, 34, 96, .05);
}

.chart span {
  flex: 1;
  background: linear-gradient(var(--brand2), var(--brand));
  border-radius: 6px 6px 0 0;
}

.phone {
  position: absolute;
  bottom: 18px;
  right: 0;
  width: 168px;
  height: 342px;
  background: #fff;
  border: 7px solid #17243a;
  border-radius: 31px;
  box-shadow: 0 24px 54px rgba(0, 20, 63, .26);
  overflow: hidden;
  z-index: 2;
  padding: 21px 12px 9px;
}

.notch {
  position: absolute;
  top: 0;
  left: 46px;
  width: 66px;
  height: 14px;
  border-radius: 0 0 11px 11px;
  background: #17243a;
}

.phone-head {
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
}

.phone-banner {
  margin-top: 14px;
  height: 98px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e5f3ff, #62deed);
  padding: 15px;
  color: #003b7a;
  font-size: 12px;
}

.phone-banner b {
  display: inline-block;
  background: #fff;
  margin-top: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 8px;
}

.products {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.products i {
  height: 96px;
  flex: 1;
  border-radius: 10px;
  background: linear-gradient(#eef7ff 62%, #fff 62%);
  border: 1px solid #e8f0f7;
}

.phone-nav {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #7d8ca3;
  font-size: 11px;
}

.float-card {
  position: absolute;
  bottom: 42px;
  left: -8px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(217, 231, 244, .92);
  border-radius: 16px;
  padding: 13px 17px;
  box-shadow: 0 18px 38px rgba(0, 34, 96, .14);
  z-index: 3;
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.float-card span {
  display: block;
  color: #72809a;
}

.float-card b {
  color: var(--green);
  font-size: 15px;
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}

.proof-grid div {
  padding: 4px 25px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-left: 0;
}

.proof-grid b,
.proof-grid span {
  display: block;
}

.proof-grid b {
  font-size: 18px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-head h2,
.demo-strip h2,
.faq-layout h2,
.cta h2 {
  font-size: 40px;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: 0;
}

.section-head p,
.demo-strip p,
.faq-layout > div > p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 226px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 34, 96, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 91, 255, .25);
  box-shadow: var(--shadow);
}

.feature.featured {
  grid-row: span 2;
  min-height: 470px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(7, 91, 255, .34), rgba(8, 220, 233, .18)),
    linear-gradient(145deg, var(--navy), #062a57);
  border-color: rgba(8, 220, 233, .28);
}

.feature h3 {
  font-size: 21px;
  margin: 16px 0 8px;
}

.feature p {
  color: #6b7890;
  margin: 0;
}

.feature.featured p {
  color: #c9dcf4;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #edf6ff;
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
}

.featured .icon {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

.mini-branches {
  margin-top: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 11px 18px;
}

.mini-branches span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
}

.mini-branches span:last-child {
  border-bottom: 0;
}

.mini-branches b {
  color: #6bf1d7;
}

.dark {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(7, 91, 255, .2), rgba(8, 220, 233, .12)),
    var(--navy);
}

.section-head.light p {
  color: #b7c7db;
}

.compare-table {
  border: 1px solid rgba(157, 245, 255, .18);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.tr {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tr:last-child {
  border-bottom: 0;
}

.tr span {
  padding: 17px 18px;
  color: #c5d0df;
  font-size: 14px;
}

.tr span:first-child {
  color: #fff;
  font-weight: 800;
}

.tr .winner {
  background: rgba(5, 199, 225, .12);
  color: #9df5ff;
}

.th {
  background: rgba(255, 255, 255, .07);
  font-weight: 800;
}

.fine {
  font-size: 12px;
  color: #71809a;
  margin-top: 17px;
}

.lightfine {
  color: #94a5bc;
}

.demo-strip {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 70px;
}

.video-card {
  height: 320px;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, .96), rgba(8, 220, 233, .86)),
    var(--brand);
  box-shadow: 0 30px 70px rgba(0, 64, 150, .24);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(0, 64, 150, .3);
}

.video-card span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  font-size: 23px;
  padding-right: 3px;
  margin-bottom: 16px;
}

.video-card b {
  font-size: 22px;
}

.video-card small {
  opacity: .78;
}

.soft {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.green {
  color: #067561;
  background: #dff8ef;
  border-color: rgba(0, 169, 143, .12);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 34, 96, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 34, 96, .14);
}

.price-card.popular {
  border: 2px solid var(--brand);
  padding: 40px 34px;
  box-shadow: 0 26px 64px rgba(7, 91, 255, .16);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--brand), #03bfd8);
  color: #fff;
  border-radius: 999px;
  padding: 7px 17px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 23px;
  margin: 0;
}

.price-card > p {
  min-height: 54px;
  color: var(--muted);
}

.price-card del {
  color: #929eb0;
}

.price {
  display: flex;
  align-items: end;
  gap: 6px;
  margin-top: 2px;
}

.price b {
  font-size: 43px;
  line-height: 1.2;
}

.price span {
  padding-bottom: 7px;
}

.save {
  display: inline-block;
  background: #dff8ef;
  color: #087a59;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 8px 0 18px;
}

.sale-badge {
  color: #004b3f;
  background: linear-gradient(135deg, #dff8ef, #bff4ea);
  border: 1px solid rgba(0, 169, 143, .16);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.price-card li {
  position: relative;
  padding: 7px 24px 7px 0;
  color: #4e5a70;
  font-size: 14px;
}

.price-card li::before {
  position: absolute;
  right: 0;
}

.price-card .btn {
  width: 100%;
}

.preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(8, 220, 233, .22), transparent 30%),
    linear-gradient(135deg, #00143f, #053975 54%, #05889a);
  color: #fff;
}

.preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 72%);
  pointer-events: none;
}

.preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.preview-head {
  margin: 0;
  text-align: start;
}

.preview-head .eyebrow {
  color: #eaffff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .18);
}

.preview-head h2,
.preview-head p {
  color: #fff;
}

.preview-head p {
  opacity: .78;
}

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

.preview-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(0, 12, 40, .28);
  backdrop-filter: blur(16px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.preview-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 220, 233, .62);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .24), rgba(8, 220, 233, .11));
  box-shadow: 0 36px 90px rgba(0, 12, 40, .38);
}

.preview-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.preview-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.25;
}

.preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.preview-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
}

.darkghost {
  color: var(--brand);
  border-color: rgba(7, 91, 255, .22);
}

.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}

.accordion details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.accordion summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: left;
  color: var(--brand);
  font-size: 24px;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta {
  color: #fff;
  padding: 78px 0;
  background:
    linear-gradient(125deg, rgba(7, 91, 255, .98), rgba(0, 191, 207, .95) 72%, rgba(0, 20, 63, .96));
}

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

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 670px;
  color: rgba(255, 255, 255, .84);
  margin: 0;
}

.lightbadge {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.white {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 18px 38px rgba(0, 20, 63, .18);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 13, 32, .78);
  backdrop-filter: blur(10px);
}

.modal.open {
  display: grid;
}

.modal-box {
  width: min(800px, 100%);
  position: relative;
}

.modal-close {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dark-close {
  background: #eef5ff;
  color: var(--navy);
}

.demo-screen {
  aspect-ratio: 16 / 9;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, .94), rgba(8, 220, 233, .72)),
    var(--navy);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}

.demo-screen span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  font-size: 28px;
  padding-right: 4px;
}

.demo-screen h3 {
  font-size: 28px;
  margin: 16px 0 6px;
}

.demo-screen p {
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

.contact-modal-box {
  width: min(620px, 100%);
}

.modal-title {
  text-align: center;
}

.modal-title h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
}

[dir="ltr"] .hero,
[dir="ltr"] .section-head,
[dir="ltr"] .demo-strip,
[dir="ltr"] .faq-layout,
[dir="ltr"] .start-layout,
[dir="ltr"] .cta-inner {
  text-align: left;
}

[dir="ltr"] .laptop {
  direction: ltr;
}

[dir="ltr"] .laptop-top b,
[dir="ltr"] .dash-title,
[dir="ltr"] .metric-row div {
  direction: ltr;
  text-align: left;
}

[dir="ltr"] .proof-grid div {
  border-left: 0;
  border-right: 1px solid var(--line);
}

[dir="ltr"] .proof-grid div:last-child {
  border-right: 0;
}

[dir="ltr"] .price-card li,
[dir="ltr"] .start-points li {
  padding: 7px 0 7px 24px;
}

[dir="ltr"] .price-card li::before,
[dir="ltr"] .start-points li::before {
  right: auto;
  left: 0;
}

[dir="ltr"] .accordion summary::after {
  float: right;
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin: auto;
  }

  .actions,
  .trust {
    justify-content: center;
  }

  .product-stage {
    max-width: 620px;
    width: 100%;
    margin: auto;
  }

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

  .featured {
    grid-column: span 2;
    grid-row: auto !important;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 570px;
    margin: auto;
  }

  .price-card.popular {
    order: -1;
  }

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

  .preview-grid {
    max-width: 650px;
  }

  .faq-layout,
  .demo-strip {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .tr span {
    padding: 12px 8px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .offerbar {
    font-size: 12px;
  }

  .nav {
    height: 68px;
    margin-top: 10px;
    padding: 0 12px;
  }

  .brand img {
    width: 118px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }

  .btn-small {
    width: auto;
    font-size: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-switch a {
    min-width: 31px;
    padding: 4px 7px;
    font-size: 11px;
  }

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

  .preview-card {
    min-height: 220px;
    padding: 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero {
    gap: 24px;
    padding-bottom: 66px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
  }

  .product-stage {
    height: 392px;
  }

  .stage-panel {
    inset: 12px 10px 22px 10px;
  }

  .laptop {
    width: 94%;
    height: 270px;
    top: 54px;
  }

  .dash-body {
    padding: 16px;
  }

  .metric-row {
    gap: 7px;
  }

  .metric-row div {
    padding: 9px;
  }

  .chart {
    height: 92px;
    padding: 14px;
    gap: 10px;
  }

  .phone {
    width: 134px;
    height: 282px;
  }

  .float-card {
    left: 0;
  }

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

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-head h2,
  .demo-strip h2,
  .faq-layout h2,
  .cta h2 {
    font-size: 30px;
  }

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

  .featured {
    grid-column: auto;
  }

  .compare-table {
    overflow-x: auto;
  }

  .tr {
    min-width: 680px;
  }

  .video-card {
    height: 260px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .modal {
    padding: 12px;
  }

  .demo-screen {
    aspect-ratio: auto;
    min-height: 300px;
  }
}
