:root {
  --blue: #005eff;
  --blue-2: #2c70ff;
  --navy: #062b66;
  --deep: #001f55;
  --ink: #08275b;
  --text: #273f62;
  --muted: #667997;
  --line: #e2eaf5;
  --soft: #f5f8fc;
  --green: #0ba56a;
  --amber: #f47b37;
  --purple: #6a42ff;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(13, 43, 94, .10);
  --shadow-soft: 0 10px 28px rgba(13, 43, 94, .07);
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
svg { width: 1em; height: 1em; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -90px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,234,245,.85);
}
.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  direction: rtl;
}
.brand { flex: 0 0 auto; }
.brand img { width: 118px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 800;
  color: #152f61;
  direction: rtl;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  inset-inline: 0;
  bottom: -12px;
  margin: auto;
  background: var(--blue);
  border-radius: 999px;
  transition: width .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c55db);
  box-shadow: 0 13px 25px rgba(0, 94, 255, .22);
}
.btn-outline {
  color: var(--blue);
  background: #fff;
  border-color: #1268ff;
  box-shadow: 0 8px 20px rgba(13, 43, 94, .06);
}
.btn-light {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.section-soft {
  background:
    radial-gradient(circle at 78% 18%, rgba(0,94,255,.06), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.hero {
  padding: 42px 0 38px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(540px, 1.12fr) minmax(0, .9fr);
  grid-template-areas: "visual copy";
  align-items: center;
  gap: 58px;
  direction: ltr;
}
.hero-copy { grid-area: copy; max-width: 560px; justify-self: start; direction: rtl; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}
.eyebrow.muted { color: #273f62; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 5.35vw, 65px);
  line-height: 1.12;
  margin-bottom: 22px;
  color: #08275b;
  font-weight: 800;
  letter-spacing: -.012em;
}
.hero-text {
  font-size: 19px;
  color: #2c4366;
  margin-bottom: 26px;
  max-width: 545px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  grid-area: visual;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 18px;
  align-items: stretch;
  direction: ltr;
}
.visual-sidebar {
  background: linear-gradient(180deg, #063373, #00265e);
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  color: #fff;
}
.visual-sidebar img { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 8px; }
.visual-sidebar svg { width: 24px; height: 24px; opacity: .94; }
.visual-panel {
  direction: rtl;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  padding: 22px;
}
.panel-title {
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 18px;
  color: #102e62;
}
.quick-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.quick-cards div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 800;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.quick-cards svg { width: 28px; height: 28px; }
.quick-cards small { color: #193862; font-size: 13px; }
.mini-panels {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 16px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 17px;
  min-height: 210px;
  background: #fff;
}
.mini-card strong { display: block; margin-bottom: 13px; font-size: 17px; color: #0a2a5f; }
.mini-card p {
  margin: 0 0 10px;
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f385d;
  font-weight: 700;
  font-size: 14px;
}
.mini-card svg { color: #0c3570; width: 20px; height: 20px; flex: 0 0 auto; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-inline-start: auto; }
.dot.green { background: var(--green); }
.dot.amber { background: var(--amber); }
.status {
  order: -1;
  min-width: 46px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.status.active { color: #0c8f5f; background: #e9f8f2; }
.status.pending { color: #d86122; background: #fff0e7; }

.trust-strip {
  padding: 21px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  font-weight: 800;
  color: #0d326d;
}
.trust-grid div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}
.trust-grid span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--blue);
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}
.trust-grid span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-inline-start: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 5px;
  right: 5px;
}

.request-section {
  padding: 38px 0 50px;
  background: #fff;
  scroll-margin-top: 92px;
}
.request-layout {
  display: grid;
  grid-template-columns: 322px minmax(0, 1fr);
  grid-template-areas: "side form";
  gap: 26px;
  align-items: start;
  direction: ltr;
}
.side-stack {
  grid-area: side;
  display: grid;
  gap: 18px;
  direction: rtl;
}
.request-form {
  grid-area: form;
  direction: rtl;
  scroll-margin-top: 95px;
}
.info-card,
.request-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-card { padding: 24px 24px; }
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon.blue { background: var(--blue); }
.card-icon.green { background: var(--green); }
.card-icon.purple { background: var(--purple); }
.info-card h2,
.info-card h3 { color: #092a60; margin-bottom: 14px; line-height: 1.22; font-weight: 800; }
.info-card h2 { font-size: 24px; }
.info-card h3 { font-size: 22px; }
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.check-list li {
  position: relative;
  padding-inline-start: 26px;
  color: #1c3d69;
  font-weight: 700;
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .45em;
  width: 8px;
  height: 4px;
  border-inline-start: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.steps-mini {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.steps-mini li {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 12px;
  align-items: center;
}
.steps-mini span {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
}
.steps-mini strong { color: #0d326d; font-size: 15px; }
.steps-mini small { color: var(--muted); font-size: 13px; }
.contact-small p {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294463;
  font-weight: 700;
}
.contact-small svg { width: 20px; height: 20px; color: var(--blue); }
.contact-small a { color: var(--blue); font-weight: 800; }

.request-form { padding: 31px 36px 32px; }
.form-heading { text-align: right; margin-bottom: 20px; }
.form-heading h2 { font-size: 30px; color: #092a60; margin-bottom: 6px; line-height: 1.2; font-weight: 800; }
.form-heading p { color: var(--muted); font-size: 16px; margin-bottom: 0; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}
label {
  display: grid;
  gap: 6px;
  color: #0d326d;
  font-size: 14px;
  font-weight: 800;
}
label span { color: #e44242; margin-inline-start: 4px; }
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  text-align: right;
  border: 1px solid #d6e0ee;
  background: #fff;
  color: #0d326d;
  border-radius: 7px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 45px;
}
textarea { resize: vertical; min-height: 110px; }
input::placeholder, textarea::placeholder { color: #8da0b9; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,94,255,.1);
}
.file-line {
  grid-column: 1 / -1;
  margin-top: 16px;
  border: 1.5px dashed #82a7ff;
  border-radius: 9px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #40628c;
  background: #fbfdff;
  cursor: pointer;
}
.file-line input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.file-line span { color: var(--blue); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.file-line svg { width: 25px; height: 25px; }
.file-line small { color: var(--muted); font-size: 13px; }
.form-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 16px;
}
.form-footer .btn { width: 100%; min-height: 48px; }
.form-footer p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }

.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
  color: #08275b;
  margin-bottom: 10px;
  letter-spacing: -.012em;
  font-weight: 800;
}
.section-heading p { color: var(--muted); font-size: 18px; margin-bottom: 0; }
.services, .solutions, .process { padding: 70px 0; scroll-margin-top: 92px; }
.cards-grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.service-card {
  min-height: 214px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
}
.service-card > div:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(0,94,255,.08);
  font-weight: 800;
  margin-bottom: 16px;
}
.service-card svg { width: 24px; height: 24px; }
.service-card .ai-badge { fill: none; font-size: 15px; }
.service-card h3 { font-size: 19px; margin-bottom: 9px; color: #092a60; line-height: 1.25; font-weight: 800; }
.service-card p { color: var(--muted); margin: 0; font-size: 15px; }
.solution-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.solution-grid article {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.solution-grid strong { display: block; color: #092a60; font-size: 19px; margin-bottom: 9px; line-height: 1.25; }
.solution-grid p { margin: 0; color: var(--muted); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  min-height: 184px;
  box-shadow: var(--shadow-soft);
}
.process-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}
.process-grid h3 { margin-bottom: 8px; color: #092a60; font-size: 19px; font-weight: 800; }
.process-grid p { color: var(--muted); margin: 0; }

.final-cta { padding: 34px 0 0; }
.final-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #073477, #001d4c);
  box-shadow: var(--shadow);
}
.final-box h2 { font-size: 33px; margin-bottom: 8px; line-height: 1.2; font-weight: 800; }
.final-box p { margin: 0; color: rgba(255,255,255,.84); font-size: 17px; }
.final-decoration {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: .36;
}
.final-decoration::before {
  content: "";
  position: absolute;
  inset-inline: -10px;
  top: 50%;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,.5);
}
.final-decoration span {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,94,255,.55);
  color: #fff;
}
.final-decoration svg { width: 25px; height: 25px; }

.site-footer {
  margin-top: 34px;
  background: linear-gradient(180deg, #062b66, #001d4c);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 44px;
  padding: 48px 0 28px;
}
.footer-brand img { width: 120px; margin-bottom: 12px; }
.footer-brand p { margin: 0 0 14px; color: rgba(255,255,255,.78); max-width: 360px; }
.social-row { display: flex; gap: 10px; }
.social-row span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 800;
}
.site-footer h3 { font-size: 17px; margin-bottom: 14px; font-weight: 800; }
.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255,255,255,.76);
  margin-bottom: 8px;
  font-size: 15px;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 17px 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1180px) {
  .main-nav { gap: 22px; }
  .hero-grid { grid-template-columns: minmax(400px, .95fr) 1fr; gap: 36px; }
  .quick-cards { grid-template-columns: repeat(5, minmax(70px, 1fr)); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-grid, .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav-shell { height: auto; padding: 14px 0; flex-wrap: wrap; }
  .main-nav { order: 3; flex: 1 1 100%; justify-content: center; gap: 20px; font-size: 14px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "visual"; }
  .hero-copy { max-width: 100%; justify-self: stretch; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 640px; margin-inline: auto; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .request-layout { grid-template-columns: 1fr; grid-template-areas: "form" "side"; }
  .side-stack { grid-template-columns: repeat(3, 1fr); }
  .info-card { padding: 22px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 104px; }
  .nav-cta { order: 2; min-height: 42px; padding-inline: 14px; font-size: 13px; }
  .main-nav { overflow-x: auto; justify-content: flex-start; padding-bottom: 3px; }
  .hero { padding: 32px 0 34px; }
  h1 { font-size: clamp(36px, 11vw, 46px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { grid-template-columns: 1fr; min-height: 0; }
  .visual-sidebar { display: none; }
  .quick-cards { grid-template-columns: repeat(2, 1fr); }
  .mini-panels, .trust-grid, .form-grid, .services-grid, .solution-grid, .process-grid, .footer-grid, .side-stack { grid-template-columns: 1fr; }
  .request-section { padding-top: 28px; }
  .request-form, .info-card { padding: 22px; }
  .form-heading h2 { font-size: 28px; }
  .file-line { flex-direction: column; gap: 4px; text-align: center; }
  .services, .solutions, .process { padding: 54px 0; }
  .final-box { flex-direction: column; align-items: stretch; padding: 28px 24px; }
  .final-box h2 { font-size: 27px; }
  .final-decoration { display: none; }
  .site-footer { margin-top: 26px; }
}


/* v4 refinements: closer to the reference landing-page layout */
#top, #about, #contact, #services, #solutions, #process { scroll-margin-top: 92px; }

.request-form {
  min-width: 0;
}

.side-stack .help-card .check-list {
  gap: 8px;
}

.help-card .card-icon,
.compact .card-icon,
.contact-small .card-icon {
  margin-inline-start: auto;
}

.service-card,
.solution-grid article,
.process-grid article,
.info-card,
.request-form,
.visual-panel {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover,
.solution-grid article:hover,
.process-grid article:hover,
.info-card:hover {
  transform: translateY(-2px);
  border-color: #c8d8ef;
  box-shadow: 0 16px 34px rgba(13, 43, 94, .09);
}

.form-grid label.full {
  grid-column: 1 / -1;
}

@media (min-width: 1181px) {
  .request-form {
    min-height: 642px;
  }
  .side-stack .info-card {
    min-height: 0;
  }
}


@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: minmax(450px, .96fr) minmax(0, 1fr); gap: 36px; }
  .request-layout { grid-template-columns: 300px minmax(0, 1fr); gap: 22px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .solution-grid, .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .request-layout { grid-template-columns: 1fr; grid-template-areas: "form" "side"; }
  .side-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .request-form { min-height: 0; }
}

@media (max-width: 760px) {
  .side-stack { grid-template-columns: 1fr; }
  .request-form { padding: 22px; }
  input, select, textarea { min-height: 44px; }
}

/* v5 hotfix: keep final CTA clean; remove decorative icons that overlapped the text in RTL */
.final-decoration {
  display: none !important;
}
.final-box {
  isolation: isolate;
}
.final-box > :not(.final-decoration) {
  position: relative;
  z-index: 1;
}
.final-box > div:not(.final-decoration) {
  max-width: 740px;
}
.final-box .btn-light {
  flex: 0 0 auto;
}
