:root {
  --navy: #0a1d4d;
  --navy-deep: #081433;
  --blue: #2f62f3;
  --blue-2: #4a8cff;
  --ink: #091a44;
  --text: #576782;
  --line: #e7eefb;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --shadow: 0 20px 60px rgba(18, 50, 120, 0.09);
  --radius: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

.top-ribbon {
  background: linear-gradient(90deg, #06132f, #08205a);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.top-ribbon-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 42px;
}
.uae-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.uae-badge img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(225, 235, 252, 0.85);
}
.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img { width: 236px; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 17px;
  font-weight: 700;
}
.main-nav a { color: #10224f; }
.main-nav a:hover, .section-link:hover { color: var(--blue); }
.header-cta { white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #3f76ff);
  color: #fff;
  box-shadow: 0 18px 30px rgba(47, 98, 243, 0.24);
}
.btn-outline {
  background: #fff;
  border: 1.5px solid #d3dffd;
  color: var(--blue);
}
.btn-light {
  background: #fff;
  color: var(--blue);
}
.btn-small {
  min-height: 50px;
  font-size: 16px;
  padding: 0 22px;
}

.hero {
  background:
    radial-gradient(circle at 78% 10%, rgba(58,125,255,0.12), transparent 25%),
    linear-gradient(90deg, #fff 0%, #fcfdff 44%, #f4f8ff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
  padding: 60px 0 38px;
}
.eyebrow {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.34em;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.98;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #08173d;
}
.hero-copy h1 span {
  color: var(--blue);
  display: inline-block;
}
.hero-copy p {
  margin: 0 0 28px;
  max-width: 760px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.62;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 30px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  border-right: 1px solid #dde6fb;
  min-height: 66px;
}
.hero-badge:last-child { border-right: 0; }
.hero-badge span:last-child {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}
.badge-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  position: relative;
  flex: 0 0 auto;
}
.badge-icon.shield { border-radius: 50% 50% 38% 38% / 38% 38% 62% 62%; }
.badge-icon.team::before,
.badge-icon.team::after,
.badge-icon.lock::before,
.badge-icon.rocket::before { content: ""; position: absolute; }
.badge-icon.team::before { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); top: 5px; left: 5px; box-shadow: 10px 0 0 var(--blue), 5px 8px 0 6px rgba(47,98,243,.18); }
.badge-icon.lock::before { inset: 6px 5px 4px; border: 2px solid var(--blue); border-top: 0; border-radius: 4px; }
.badge-icon.rocket::before { width: 8px; height: 14px; border: 2px solid var(--blue); border-radius: 10px 10px 10px 10px / 14px 14px 6px 6px; left: 8px; top: 4px; transform: rotate(45deg); }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-visual-wrap { position: relative; }
.hero-visual {
  width: 100%;
  border-radius: 0 0 0 28px;
  box-shadow: 0 40px 70px rgba(18, 54, 124, 0.12);
}

.section { padding: 42px 0; }
.section-tight { padding-top: 18px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-head p {
  margin: 0;
  color: var(--text);
  font-size: 22px;
}
.section-link {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.platform-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px 20px;
  box-shadow: 0 8px 24px rgba(20, 54, 119, 0.04);
  min-height: 236px;
}
.platform-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 22px;
}
.tint-blue .platform-icon { background: #eef4ff; color: #4070ff; }
.tint-purple .platform-icon { background: #f1edff; color: #7b57f8; }
.tint-red .platform-icon { background: #fff1f1; color: #ff5b6a; }
.tint-green .platform-icon { background: #edf8f2; color: #40b86d; }
.tint-orange .platform-icon { background: #fff4e7; color: #f79a26; }
.tint-violet .platform-icon { background: #f4efff; color: #8e57ff; }
.platform-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.18;
}
.platform-card p {
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.6;
}
.platform-card a {
  color: var(--blue);
  font-weight: 800;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.solution-chip {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  font-size: 18px;
  font-weight: 800;
  background: #fff;
}
.solution-chip span {
  color: var(--blue);
  font-size: 24px;
  width: 34px;
  text-align: center;
  flex: 0 0 34px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.industry-card {
  border-radius: 12px;
  overflow: hidden;
  display: block;
  min-height: 168px;
  border: 1px solid rgba(9, 26, 68, 0.06);
  box-shadow: 0 8px 24px rgba(12, 43, 101, 0.05);
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.metrics-band {
  background:
    radial-gradient(circle at 20% 35%, rgba(95,162,255,0.28), transparent 28%),
    radial-gradient(circle at 82% 56%, rgba(95,162,255,0.17), transparent 24%),
    linear-gradient(90deg, #0b2f8d, #123da2 46%, #0f368f 100%);
  color: #fff;
  margin-top: 28px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.metric {
  text-align: center;
  padding: 30px 14px;
  border-left: 1px solid rgba(255,255,255,0.16);
}
.metric:first-child { border-left: 0; }
.metric strong {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}
.metric span {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 28px;
  align-items: stretch;
}
.proud-card,
.action-card {
  border-radius: 18px;
  overflow: hidden;
}
.proud-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
}
.flag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 18px;
}
.flag-wrap img {
  width: 150px;
  height: auto;
}
.proud-copy {
  padding: 34px 28px 28px 8px;
}
.proud-copy h3,
.action-copy h3 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
}
.proud-copy p,
.action-copy p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}
.action-card {
  background: linear-gradient(135deg, #0a1e53, #0f3490);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 240px;
}
.action-copy {
  padding: 38px;
}
.action-copy p { color: rgba(255,255,255,0.86); }
.action-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}
.action-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.site-footer {
  margin-top: 34px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, #06112d, #071837 55%, #051024 100%);
  background-size: 36px 36px, 36px 36px, auto;
  color: #fff;
  padding: 34px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr;
  gap: 34px;
}
.footer-brand img { width: 210px; margin-bottom: 18px; }
.footer-brand p {
  max-width: 330px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-size: 18px;
}
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center; color: #fff; font-weight: 700;
}
.site-footer h4 {
  margin: 10px 0 18px;
  font-size: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 14px; }
.site-footer a,
.contact-list li { color: rgba(255,255,255,0.9); font-size: 18px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.88);
  font-size: 17px;
}
.footer-bottom div { display: flex; gap: 28px; }

@media (max-width: 1300px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .hero-copy h1 { font-size: clamp(48px, 6vw, 70px); }
  .platform-grid,
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .hero-grid,
  .dual-grid,
  .action-card,
  .proud-card { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .platform-grid,
  .solutions-grid,
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(odd) { border-left: 0; }
}

@media (max-width: 768px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .top-ribbon-inner { justify-content: center; }
  .brand img { width: 180px; }
  .header-cta { display: none; }
  .hero-grid { padding-top: 34px; }
  .eyebrow { font-size: 12px; letter-spacing: .28em; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy p,
  .section-head p { font-size: 17px; }
  .hero-badges,
  .platform-grid,
  .solutions-grid,
  .industry-grid,
  .metrics-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { border-right: 0; border-bottom: 1px solid #dde6fb; padding-bottom: 12px; }
  .hero-badge:last-child { border-bottom: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .section-head h2 { font-size: 36px; }
  .site-footer { padding-top: 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 16px; }
}


/* ================================
   ApexSys v8 Hero-first correction
   ================================ */

.header-inner {
  min-height: 84px;
}

.brand img {
  width: 210px;
}

.hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(58,125,255,0.10), transparent 26%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f4f8ff 100%);
}

.hero-grid {
  grid-template-columns: minmax(520px, 0.92fr) minmax(640px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 52px 0 24px;
}

.eyebrow {
  font-size: 15px;
  letter-spacing: 0.36em;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(54px, 4.55vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  max-width: 710px;
}

.hero-copy h1 br {
  display: block;
}

.hero-copy p {
  max-width: 690px;
  font-size: 19px;
  line-height: 1.62;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero-badge {
  min-height: 48px;
  padding: 0 20px 0 0;
  margin-right: 20px;
  border-right: 1px solid #dfe7f7;
  gap: 10px;
  flex: 0 1 auto;
}

.hero-badge:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-badge span:last-child {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.hero-actions .btn {
  min-height: 52px;
  font-size: 16px;
  border-radius: 12px;
  padding: 0 24px;
}

.hero-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 430px;
}

.hero-visual {
  width: 100%;
  max-width: 760px;
  border-radius: 0;
  box-shadow: 0 34px 70px rgba(17, 47, 108, 0.10);
  object-fit: cover;
  transform: translateY(4px);
}

/* tighten the first content section so it starts like the approved mockup */
.section:first-of-type {
  padding-top: 34px;
}

/* Card polishing carried with v8 so the page below the hero does not look oversized */
.section-head h2 {
  font-size: 40px;
}

.section-head p {
  font-size: 18px;
}

.platform-card {
  min-height: 210px;
  padding: 22px 18px 18px;
}

.platform-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.platform-card h3 {
  font-size: 18px;
  line-height: 1.15;
}

.platform-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.solution-chip {
  min-height: 76px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.18;
}

.industry-card {
  min-height: 150px;
}

@media (max-width: 1300px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 5.2vw, 64px);
  }

  .hero-visual {
    max-width: 690px;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

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

  .hero-badge {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .hero-visual-wrap {
    min-height: auto;
  }

  .hero-visual {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

  .hero-badge span:last-child {
    white-space: normal;
  }
}


/* ================================
   ApexSys v9 Hero exact-match correction
   ================================ */

:root {
  --header-h: 78px;
}

.top-ribbon-inner {
  min-height: 36px;
}

.site-header {
  box-shadow: 0 10px 26px rgba(9, 26, 68, 0.025);
}

.header-inner {
  min-height: var(--header-h);
}

.brand img {
  width: 190px;
}

.main-nav {
  gap: 28px;
  font-size: 16px;
}

.header-cta {
  min-height: 52px;
  border-radius: 12px;
  font-size: 16px;
  padding: 0 26px;
}

.hero {
  background:
    radial-gradient(circle at 74% 22%, rgba(66, 128, 255, 0.11), transparent 24%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 43%, #f4f8ff 100%);
}

.hero-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  padding: 48px 0 18px;
  min-height: 620px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.42em;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(56px, 4.15vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
  max-width: 740px;
}

.hero-copy h1 .line-one,
.hero-copy h1 .line-two {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .line-two {
  color: var(--blue);
}

.hero-copy p {
  max-width: 675px;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  gap: 0;
  max-width: 690px;
  margin-bottom: 26px;
}

.hero-badge {
  min-height: 42px;
  gap: 9px;
  padding-right: 16px;
  margin-right: 16px;
}

.hero-badge span:last-child {
  font-size: 13px;
  line-height: 1.12;
  white-space: nowrap;
}

.badge-icon {
  width: 22px;
  height: 22px;
  border-width: 1.7px;
}

.hero-actions {
  gap: 14px;
}

.hero-actions .btn {
  min-height: 50px;
  font-size: 15px;
  padding: 0 24px;
}

.hero-visual-exact {
  position: relative;
  min-height: 468px;
  justify-content: center;
  align-items: center;
}

.skyline-panel {
  position: relative;
  width: min(100%, 810px);
  height: 430px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.26) 22%, rgba(255,255,255,0) 45%),
    url("assets/hero-skyline-clean.png") center center / cover no-repeat;
  box-shadow: 0 34px 70px rgba(16, 48, 110, 0.10);
  overflow: hidden;
}

.skyline-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(244,248,255,0.68));
}

.trusted-card {
  position: absolute;
  left: clamp(34px, 6vw, 84px);
  right: clamp(34px, 5vw, 84px);
  bottom: 42px;
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(230, 237, 252, 0.95);
  border-radius: 12px;
  box-shadow: 0 22px 44px rgba(12, 39, 95, 0.13);
  backdrop-filter: blur(18px);
  padding: 19px 24px 18px;
}

.trusted-card h3 {
  margin: 0 0 15px;
  color: #0b1a45;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.trusted-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.trusted-icons div {
  min-width: 0;
  text-align: center;
}

.trusted-icons span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  color: var(--blue);
  font-size: 18px;
}

.trusted-icons small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #17264f;
  white-space: nowrap;
}

.section:first-of-type {
  padding-top: 24px;
}

@media (min-width: 1500px) {
  .container {
    width: min(1320px, calc(100% - 64px));
  }

  .hero-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .hero-copy h1 {
    font-size: 68px;
  }
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 .line-one,
  .hero-copy h1 .line-two {
    white-space: normal;
  }

  .hero-visual-exact {
    min-height: 420px;
  }

  .skyline-panel {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

  .trusted-card {
    left: 16px;
    right: 16px;
    bottom: 22px;
    padding: 16px;
  }

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

  .skyline-panel {
    height: 360px;
  }
}


/* ================================
   ApexSys v10 Hero polish
   ================================ */

.top-ribbon-inner {
  min-height: 34px;
}

.site-header {
  border-bottom-color: rgba(225, 235, 252, 0.72);
}

.header-inner {
  min-height: 82px;
}

.brand img {
  width: 218px;
  opacity: 1;
}

.hero {
  background:
    radial-gradient(circle at 74% 17%, rgba(66, 128, 255, 0.10), transparent 25%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 43%, #f4f8ff 100%);
}

.hero-grid {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  padding: 44px 0 0;
  min-height: 565px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.42em;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(48px, 3.75vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.042em;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-copy p {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.62;
  margin-bottom: 22px;
}

.hero-badges {
  max-width: 710px;
  margin-bottom: 24px;
}

.hero-badge {
  min-height: 38px;
  gap: 8px;
  padding-right: 14px;
  margin-right: 14px;
}

.hero-badge span:last-child {
  font-size: 12.5px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.badge-icon {
  width: 21px;
  height: 21px;
  border-width: 1.6px;
}

.hero-actions .btn {
  min-height: 48px;
  font-size: 14.5px;
  border-radius: 12px;
  padding: 0 23px;
}

.hero-visual-exact {
  min-height: 410px;
  align-items: flex-start;
  padding-top: 36px;
}

.skyline-panel {
  width: min(100%, 830px);
  height: 392px;
  background-position: center center;
  box-shadow: 0 28px 62px rgba(16, 48, 110, 0.10);
}

.trusted-card {
  left: 50%;
  right: auto;
  width: min(640px, calc(100% - 72px));
  bottom: 44px;
  transform: translateX(-50%);
  padding: 18px 22px 17px;
  border-radius: 14px;
}

.trusted-card h3 {
  font-size: 16px;
  line-height: 1.32;
  margin-bottom: 14px;
}

.trusted-icons {
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 12px;
}

.trusted-icons div {
  min-width: 72px;
}

.trusted-icons span {
  width: 30px;
  height: 26px;
  margin-bottom: 6px;
  font-size: 17px;
}

.trusted-icons small {
  font-size: 11px;
  line-height: 1.1;
  white-space: normal;
}

.section:first-of-type {
  padding-top: 18px;
}

.section {
  padding-top: 38px;
}

.section-head h2 {
  font-size: 38px;
}

.section-head {
  margin-bottom: 16px;
}

@media (min-width: 1500px) {
  .container {
    width: min(1300px, calc(100% - 64px));
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .skyline-panel {
    width: 820px;
  }
}

@media (max-width: 1280px) {
  .brand img {
    width: 195px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 6vw, 62px);
  }

  .hero-visual-exact {
    padding-top: 8px;
  }

  .trusted-card {
    width: min(640px, calc(100% - 40px));
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 18px;
  }

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

  .trusted-icons div {
    min-width: 0;
  }

  .trusted-card {
    width: calc(100% - 28px);
    bottom: 20px;
  }

  .skyline-panel {
    height: 345px;
  }
}


/* ================================
   ApexSys v11 final hero tuning
   ================================ */

.hero-grid {
  padding-top: 66px;
  padding-bottom: 18px;
  min-height: 595px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-copy h1 .line-one {
  color: #091a44 !important;
}

.hero-copy h1 .line-two {
  color: var(--blue) !important;
}

.hero-visual-exact {
  padding-top: 48px;
}

.skyline-panel {
  background-position: center 42%;
}

.trusted-card {
  padding: 20px 24px 19px;
  bottom: 38px;
}

.trusted-card h3 {
  margin-bottom: 16px;
}

.trusted-icons {
  gap: 14px;
}

.section:first-of-type {
  padding-top: 34px;
}

.platform-grid {
  margin-top: 2px;
}

@media (max-width: 1280px) {
  .hero-grid {
    padding-top: 44px;
  }

  .hero-visual-exact {
    padding-top: 18px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    padding-top: 34px;
    padding-bottom: 22px;
  }

  .section:first-of-type {
    padding-top: 28px;
  }
}


/* ================================
   ApexSys v12 final hero spacing
   ================================ */

.hero-grid {
  padding-top: 38px;
  padding-bottom: 6px;
  min-height: 535px;
}

.hero-visual-exact {
  padding-top: 26px;
  min-height: 388px;
}

.skyline-panel {
  height: 372px;
  background-position: center 36%;
  box-shadow: 0 30px 68px rgba(16, 48, 110, 0.13);
}

.trusted-card {
  width: min(600px, calc(100% - 92px));
  bottom: 52px;
  padding: 19px 23px 18px;
  box-shadow: 0 28px 56px rgba(12, 39, 95, 0.16);
}

.section:first-of-type {
  padding-top: 22px;
}

@media (min-width: 1500px) {
  .hero-grid {
    padding-top: 42px;
    min-height: 545px;
  }

  .skyline-panel {
    height: 382px;
  }
}

@media (max-width: 1280px) {
  .hero-grid {
    padding-top: 34px;
    padding-bottom: 16px;
  }

  .hero-visual-exact {
    padding-top: 12px;
  }

  .trusted-card {
    width: min(600px, calc(100% - 42px));
  }
}

@media (max-width: 768px) {
  .hero-grid {
    padding-top: 28px;
    min-height: auto;
  }

  .skyline-panel {
    height: 330px;
  }

  .trusted-card {
    bottom: 18px;
  }
}


/* ================================
   ApexSys v13 icon and badge correction
   ================================ */

.hero-badges-v13 {
  display: flex;
  align-items: center;
  max-width: 760px;
  gap: 0;
  margin-bottom: 24px;
}

.hero-badges-v13 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid #dfe7f7;
}

.hero-badges-v13 .hero-badge:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hero-badges-v13 svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-badges-v13 .hero-badge span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0c1b45;
  letter-spacing: -0.01em;
}

.trusted-card {
  width: min(630px, calc(100% - 92px));
  padding: 18px 22px 18px;
}

.trusted-card h3 {
  font-size: 16px;
  margin-bottom: 17px;
}

.trusted-icons-v13 {
  display: grid;
  grid-template-columns: repeat(6, minmax(76px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.trusted-icons-v13 div {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 10px 6px 9px;
  border: 1px solid rgba(47, 98, 243, 0.10);
  border-radius: 12px;
  background: rgba(247, 250, 255, 0.72);
}

.trusted-icons-v13 svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trusted-icons-v13 small {
  display: block;
  font-size: 11.5px;
  line-height: 1.08;
  font-weight: 800;
  color: #0c1b45;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@media (max-width: 1280px) {
  .hero-badges-v13 {
    flex-wrap: wrap;
    gap: 12px 0;
  }

  .hero-badges-v13 .hero-badge {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-badges-v13 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-badges-v13 .hero-badge {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .trusted-icons-v13 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-icons-v13 small {
    white-space: normal;
  }
}


/* ================================
   ApexSys v14 full correction pass
   ================================ */

.top-ribbon-inner {
  min-height: 40px;
}

.uae-badge {
  gap: 12px;
  font-size: 14px;
}

.uae-badge img {
  width: 24px;
  height: 16px;
}

.site-header {
  box-shadow: 0 12px 30px rgba(9, 26, 68, 0.03);
}

.header-inner {
  min-height: 94px;
  gap: 26px;
}

.brand img {
  width: 252px;
}

.main-nav {
  gap: 30px;
  font-size: 16px;
}

.header-cta {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 16px;
}

.hero-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 12px;
  min-height: 540px;
}

.hero-copy h1 {
  font-size: clamp(52px, 4.25vw, 68px);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-copy p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.64;
  margin-bottom: 26px;
}

.hero-badges-v13 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 790px;
  gap: 0;
  margin-bottom: 28px;
}

.hero-badges-v13 .hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 0;
  margin-right: 0;
  border-right: 1px solid #dde5f7;
}

.hero-badges-v13 .hero-badge:last-child {
  padding-right: 0;
}

.hero-badges-v13 svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.hero-badges-v13 .hero-badge span {
  white-space: normal;
  font-size: 13px;
  line-height: 1.18;
  max-width: 124px;
}

.hero-actions {
  gap: 16px;
}

.hero-visual-exact {
  min-height: 432px;
  padding-top: 6px;
  align-items: center;
}

.skyline-panel {
  width: min(100%, 860px);
  height: 430px;
  background: url("assets/hero-skyline-clean.png") center 31% / cover no-repeat;
  box-shadow: 0 36px 78px rgba(16, 48, 110, 0.14);
  border-radius: 0;
}

.skyline-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 18%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}

.skyline-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(244,248,255,0.28));
  pointer-events: none;
}

.trusted-card {
  left: auto;
  right: 24px;
  bottom: 24px;
  transform: none;
  width: min(560px, calc(100% - 56px));
  max-width: 560px;
  padding: 19px 20px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 26px 56px rgba(12, 39, 95, 0.14);
}

.trusted-card h3 {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.28;
  max-width: 360px;
}

.trusted-icons-v13 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.trusted-icons-v13 div {
  min-height: 74px;
  padding: 11px 8px 10px;
  gap: 6px;
  border-radius: 14px;
  background: #f9fbff;
  border: 1px solid rgba(47, 98, 243, 0.10);
}

.trusted-icons-v13 small {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: normal;
  text-wrap: balance;
}

.section:first-of-type {
  padding-top: 18px;
}

@media (max-width: 1280px) {
  .brand img {
    width: 228px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .hero-copy h1 .line-one,
  .hero-copy h1 .line-two {
    white-space: normal;
  }

  .hero-visual-exact {
    min-height: 400px;
    padding-top: 0;
  }

  .skyline-panel {
    width: 100%;
  }

  .trusted-card {
    right: 20px;
    width: min(560px, calc(100% - 40px));
  }
}

@media (max-width: 980px) {
  .hero-badges-v13 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .hero-badges-v13 .hero-badge:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .hero-badges-v13 .hero-badge:nth-child(1),
  .hero-badges-v13 .hero-badge:nth-child(3) {
    padding-right: 18px;
  }

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

@media (max-width: 768px) {
  .top-ribbon-inner {
    min-height: 36px;
  }

  .brand img {
    width: 188px;
  }

  .header-inner {
    min-height: 80px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-badges-v13 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-badges-v13 .hero-badge {
    border-right: 0;
    padding-right: 0;
  }

  .hero-badges-v13 .hero-badge span {
    max-width: none;
  }

  .skyline-panel {
    height: 360px;
    background-position: center 31%;
  }

  .trusted-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .trusted-card h3 {
    font-size: 15px;
    max-width: none;
  }

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


/* ================================
   ApexSys v15 reality correction
   Focus: header logo, Dubai visual, trusted card, badges, CTA balance
   ================================ */

:root {
  --container: 1300px;
}

/* Header balance */
.top-ribbon-inner {
  min-height: 38px;
}

.uae-badge {
  font-size: 14px;
  gap: 10px;
}

.uae-badge img {
  width: 24px;
  height: 16px;
}

.header-inner {
  min-height: 96px;
  grid-template-columns: 260px 1fr 250px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 250px !important;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.main-nav {
  justify-content: center;
  gap: 28px;
  font-size: 16px;
}

.header-cta {
  justify-self: end;
  min-height: 58px;
  min-width: 220px;
  border-radius: 14px;
  font-size: 16px;
  padding-inline: 30px;
}

/* Hero structure */
.hero {
  background:
    radial-gradient(circle at 73% 18%, rgba(65, 119, 255, 0.10), transparent 23%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #f4f8ff 100%);
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  padding-top: 44px;
  padding-bottom: 10px;
  min-height: 560px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .42em;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(52px, 4.22vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 735px;
  margin-bottom: 18px;
}

.hero-copy h1 .line-one {
  color: #07173d !important;
}

.hero-copy h1 .line-two {
  color: var(--blue) !important;
}

.hero-copy p {
  max-width: 625px;
  font-size: 17px;
  line-height: 1.58;
  margin-bottom: 26px;
}

/* Feature badges, equalized */
.hero-badges-v13 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-bottom: 28px;
  column-gap: 0;
}

.hero-badges-v13 .hero-badge {
  min-height: 48px;
  gap: 9px;
  padding: 0 18px 0 0;
  margin: 0;
  border-right: 1px solid rgba(205, 217, 242, 0.86);
}

.hero-badges-v13 .hero-badge:not(:first-child) {
  padding-left: 18px;
}

.hero-badges-v13 .hero-badge:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-badges-v13 svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  stroke-width: 1.85;
}

.hero-badges-v13 .hero-badge span {
  font-size: 13px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  white-space: normal;
  max-width: 125px;
}

.hero-actions {
  gap: 16px;
}

.hero-actions .btn {
  min-height: 54px;
  border-radius: 13px;
  font-size: 15.5px;
  padding-inline: 28px;
}

.hero-actions .btn-outline {
  border-color: rgba(47,98,243,0.22);
  box-shadow: 0 12px 28px rgba(24, 57, 130, 0.04);
}

/* Dubai visual, less faded, landmark stronger */
.hero-visual-exact {
  min-height: 430px;
  padding-top: 4px;
  align-items: center;
  justify-content: flex-end;
}

.skyline-panel {
  width: min(100%, 860px);
  height: 430px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.055) 17%, rgba(255,255,255,0) 34%),
    url("assets/hero-dubai-premium.png") center 43% / cover no-repeat !important;
  box-shadow: 0 34px 78px rgba(14, 45, 105, 0.13);
  border-radius: 0;
}

.skyline-panel::before {
  display: none;
}

.skyline-panel::after {
  height: 12%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(244,248,255,0.18));
}

/* Trusted card, smaller, lower-right, no landmark blocking */
.trusted-card {
  right: 22px;
  left: auto;
  bottom: 22px;
  transform: none;
  width: min(535px, calc(100% - 52px));
  max-width: 535px;
  padding: 17px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(220, 229, 249, .94);
  box-shadow: 0 24px 54px rgba(11, 37, 88, .15);
}

.trusted-card h3 {
  font-size: 16px;
  line-height: 1.28;
  margin-bottom: 14px;
  max-width: 360px;
}

.trusted-icons-v13 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.trusted-icons-v13 div {
  min-width: 0;
  min-height: 68px;
  padding: 9px 6px 8px;
  border-radius: 13px;
  background: rgba(248,251,255,.85);
}

.trusted-icons-v13 svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.75;
}

.trusted-icons-v13 small {
  font-size: 11.25px;
  line-height: 1.08;
  white-space: normal;
  text-wrap: balance;
}

/* Keep next section visible but not attached */
.section:first-of-type {
  padding-top: 24px;
}

@media (min-width: 1500px) {
  .container {
    width: min(1380px, calc(100% - 72px));
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .skyline-panel {
    width: 850px;
    height: 420px;
  }
}

@media (max-width: 1280px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 220px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 .line-one,
  .hero-copy h1 .line-two {
    white-space: normal;
  }

  .hero-visual-exact {
    min-height: 420px;
  }

  .skyline-panel {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero-badges-v13 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .hero-badges-v13 .hero-badge:nth-child(2) {
    border-right: 0;
  }

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

  .trusted-card {
    width: min(560px, calc(100% - 40px));
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 180px !important;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

  .hero-badges-v13 .hero-badge,
  .hero-badges-v13 .hero-badge:not(:first-child) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .skyline-panel {
    height: 360px;
  }

  .trusted-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}
