:root{
  --bg: #ffffff;
  --text: #121417;
  --muted: #5b6571;
  --line: #e7ebf0;
  --card: #f7f8fa;
  --accent: #2F6FA5; /* sea blue */
  --accent2: #0F172A;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(18,20,23,.08);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

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

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__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{ height: 44px; width:auto; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a{ padding: 8px 10px; border-radius: 10px; }
.nav a:hover{ background: #f1f3f6; text-decoration:none; color: var(--text); }

.lang{ display:flex; gap: 6px; align-items:center; }
.lang__item{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
}
.lang__item:hover{ text-decoration:none; border-color: #cfd6de; }
.lang__item.is-active{
  color: var(--text);
  border-color: #cfd6de;
  background: #f7f8fa;
}

.hero{
  padding: 54px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.kicker__dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(208,17,27,.12);
}
.h1{
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: #fff;
}
.btn:hover{ text-decoration:none; border-color:#cfd6de; }
.btn--primary{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover{ opacity: .92; }
.btn--ghost{
  background: #fff;
  color: var(--text);
}
.btn--disabled{
  background: #f1f3f6;
  color: #98a2ad;
  border-color: #e7ebf0;
  cursor: not-allowed;
}
.note{
  margin-top: 10px;
  font-size: 12.5px;
  color: #7b8794;
}

.trust{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trust__item{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.hero__card{
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__img{
  width: 100%;
  height: auto;
  display:block;
}
.hero__imgwrap{
  padding: 18px;
}

.section{
  padding: 36px 0;
}
.section__title{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section__intro{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 72ch;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}
.list li{ margin: 8px 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.step__n{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px; height: 30px;
  border-radius: 10px;
  font-weight: 900;
  background: rgba(208,17,27,.10);
  color: var(--accent);
  margin-bottom: 10px;
}
.step__t{ margin: 0 0 6px; font-weight: 900; }
.step__d{ margin: 0; color: var(--muted); }

.faq{
  display:grid;
  gap: 10px;
}
.faq__item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.faq__btn{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding: 16px 16px;
  cursor:pointer;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.faq__btn span{ color: var(--text); }
.faq__icon{
  width: 28px; height: 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
  flex: 0 0 auto;
}
.faq__body{
  display:none;
  padding: 0 16px 16px;
  color: var(--muted);
  font-weight: 650;
}
.faq__item.is-open .faq__body{ display:block; }
.faq__item.is-open .faq__icon{ transform: rotate(45deg); }

.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items:start;
}
.contact a.btn{ justify-content:center; }

.hr{
  height: 1px;
  background: var(--line);
  margin: 18px 0 0;
}

.footer{
  margin-top: 36px;
  border-top: 1px solid var(--line);
  background: #fbfbfc;
}
.footer__inner{
  padding: 18px 0;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 650;
}
.footer__links{ display:flex; gap: 16px; }
.footer__links a{ color: var(--muted); }
.footer__links a:hover{ color: var(--text); text-decoration:none; }

.legal{
  padding: 28px 0 46px;
}
.legal h1{ font-size: 28px; margin: 0 0 10px; }
.legal h2{ font-size: 18px; margin: 18px 0 8px; }
.legal p, .legal li{ color: var(--muted); font-weight: 650; }
.legal a{ color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}


/* Equal action buttons */
.btn--action{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
}
.btn--action:hover{ text-decoration:none; opacity:.94; }
.cta-row .btn{ min-width: 170px; }
@media (max-width: 520px){ .cta-row .btn{ width:100%; } }

/* Force LTR blocks inside Arabic pages when needed */
.ltr{ direction:ltr; text-align:left; unicode-bidi: plaintext; display:inline-block; }


/* Floating contact bubble */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: grid;
  gap: 10px;
  align-items: end;
  justify-items: end;
}
.fab__btn{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(15,23,42,.92);
  color: #fff;
  box-shadow: 0 14px 36px rgba(2,6,23,.22);
  backdrop-filter: blur(10px);
}
.fab__btn:hover{ text-decoration:none; transform: translateY(-1px); }
.fab__btn--accent{
  background: var(--accent);
  border-color: rgba(255,255,255,.16);
}
.fab__label{
  position:absolute;
  right: 62px;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15,23,42,.92);
  color:#fff;
  opacity:0;
  transform: translateX(6px);
  transition: .15s ease;
  pointer-events:none;
}
.fab__item{ position:relative; }
.fab__item:hover .fab__label{ opacity:1; transform: translateX(0); }

/* Small CEO-friendly badges */
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 0;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 12.5px;
}
.badge__dot{
  width: 8px; height: 8px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,111,165,.14);
}

@media (max-width: 520px){
  .fab{ right: 14px; bottom: 14px; }
  .fab__btn{ width: 50px; height: 50px; border-radius: 16px; }
}
/* Premium split hero */
.hero-split{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(47,111,165,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,.10), transparent 55%),
              linear-gradient(180deg, #0b1220 0%, #0f1b2f 55%, #ffffff 55%, #ffffff 100%);
  padding: 44px 0 0;
}
.hero-split__top{
  padding-bottom: 34px;
}
.hero-split__title{
  color:#fff;
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-split__sub{
  color: rgba(255,255,255,.74);
  margin: 0 0 22px;
  max-width: 70ch;
  font-size: 15.5px;
}
.hero-panels{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 34px;
}
.panel{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(2,6,23,.22);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.panel__head{
  padding: 18px 18px 0;
  color:#fff;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
}
.panel__kicker{
  font-weight: 900;
  letter-spacing:.04em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.68);
}
.panel__h{
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.15;
}
.panel__body{
  padding: 14px 18px 18px;
  color: rgba(255,255,255,.74);
  font-weight: 650;
}
.panel__body p{ margin: 0 0 12px; }
.panel__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.btn--light{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color:#fff;
}
.btn--light:hover{ opacity:.95; border-color: rgba(255,255,255,.28); }
.btn--accent{
  background: var(--accent);
  border-color: rgba(255,255,255,.12);
  color:#fff;
}
.btn--accent:hover{ opacity:.95; }
.btn--disabled{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.42);
}
.panel__note{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.62);
}
.mini-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.68);
  font-weight: 650;
}
.mini-list li{ margin: 7px 0; }
.hero-split__spacer{ height: 12px; }

@media (max-width: 920px){
  .hero-split{ background: radial-gradient(1200px 600px at 20% 10%, rgba(47,111,165,.22), transparent 60%),
                        linear-gradient(180deg, #0b1220 0%, #0f1b2f 62%, #ffffff 62%, #ffffff 100%); }
  .hero-panels{ grid-template-columns: 1fr; }
}

.fab svg{ display:block; }
