:root {
  --bg: #f5f8fd;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --text: #0b1633;
  --muted: #60708b;
  --line: rgba(11, 22, 51, 0.10);
  --blue: #185bc7;
  --blue-2: #2b74ef;
  --navy: #061635;
  --navy-2: #092b67;
  --success: #26a269;
  --shadow: 0 22px 60px rgba(8, 27, 70, 0.14);
  --shadow-soft: 0 14px 34px rgba(8, 27, 70, 0.10);
  --radius: 22px;
  --container: 1200px;
  --header-h: 76px;
}

/*body {
  user-select: none;
}
*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { width: 1em; height: 1em; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  inset-inline-start: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip:focus { transform: translateY(0); }
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
}
.progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #77b5ff, #2b74ef, #ffffff);
}

.siteHeader {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 900;
  color: #fff;
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.siteHeader.is-scrolled {
  background: rgba(4, 14, 34, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.navWrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .03em;
}
.brand__logo {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.06);
}
.brand__name { font-size: 22px; }
.mainNav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.mainNav a, .loginLink {
  color: rgba(255,255,255,.82);
  transition: color .2s ease;
}
.mainNav a:hover, .loginLink:hover { color: #fff; }
.navActions { display: flex; align-items: center; gap: 14px; }
.loginLink { font-size: 14px; }

.lang { position: relative; }
.lang__btn {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: 170px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.lang__menu.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.lang__opt {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
}
.lang__opt:hover, .lang__opt.is-active { background: #eef4ff; color: var(--blue); }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.mobileMenu {
  background: rgba(4, 14, 34, .97);
  border-top: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.mobileMenu__inner { padding: 16px 0 24px; display: grid; gap: 10px; }
.mobileMenu__inner a { padding: 14px 4px; color: rgba(255,255,255,.88); border-bottom: 1px solid rgba(255,255,255,.08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--small { min-height: 42px; padding-inline: 16px; }
.btn--primary { background: linear-gradient(135deg, var(--blue-2), #1048ac); color: #fff; box-shadow: 0 14px 24px rgba(24,91,199,.26); }
.btn--outline { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn--light { background: #fff; color: var(--blue); box-shadow: 0 18px 40px rgba(0,0,0,.18); }

.hero {
  position: relative;
  color: #fff;
  min-height: 760px;
  padding: calc(var(--header-h) + 86px) 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 20%, rgba(43,116,239,.55), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(43,116,239,.28), transparent 36%),
    linear-gradient(135deg, #071a3d 0%, #061635 58%, #031026 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255,255,255,.04) 46% 46.3%, transparent 46.3%),
    linear-gradient(35deg, transparent 0 63%, rgba(61,134,255,.18) 63% 63.4%, transparent 63.4%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -220px;
  bottom: -320px;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 58px;
}
.eyebrow, .miniKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  font-weight: 900;
  color: #7fb4ff;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fb4ff;
  box-shadow: 0 0 0 6px rgba(127,180,255,.15);
}
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
 /* letter-spacing: -.055em; */
  max-width: 760px;
}
.hero__lead {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.55vw, 22px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.heroVisual {
  min-height: 480px;
  position: relative;
}
.reportCard {
  position: absolute;
  left: 6%;
  top: 10px;
  width: 350px;
  min-height: 440px;
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
  transform: rotate(-7deg);
  padding: 26px;
  z-index: 2;
}
.reportCard::before {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 30px;
  background: #c7a77a;
  border-radius: 8px;
  z-index: -1;
  transform: rotate(10deg);
}
.reportCard__top { display: flex; align-items: center; gap: 12px; font-size: 20px; margin-bottom: 22px; }
.reportLogo { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); border: 2px solid var(--blue); border-radius: 50%; }
.reportRows { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 28px; }
.reportRows span { height: 28px; border: 1px solid #d8e0ed; border-radius: 4px; background: #f7faff; }
.stamp {
  width: max-content;
  max-width: 100%;
  margin: 8px auto 22px;
  padding: 10px 16px;
  border: 4px solid rgba(38,162,105,.75);
  color: var(--success);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  transform: rotate(-3deg);
}
.reportList { margin: 0; padding-inline-start: 18px; color: #344460; font-weight: 600; font-size: 13px; }
.reportList li + li { margin-top: 12px; }
.tabletMock {
  position: absolute;
  right: 0;
  top: 82px;
  width: 350px;
  min-height: 430px;
  border-radius: 30px;
  border: 10px solid #081122;
  background: #eef4ff;
  box-shadow: 0 34px 80px rgba(0,0,0,.38);
  transform: rotate(4deg);
  padding: 22px;
}
.tabletMock__bar { height: 46px; border-radius: 14px; background: linear-gradient(90deg, var(--blue), #79b4ff); margin-bottom: 18px; }
.tabletMock__chart { height: 120px; border-radius: 18px; background: linear-gradient(135deg, #fff, #dbe9ff); border: 1px solid #d3e0f2; margin-bottom: 18px; }
.tabletMock__lines { display: grid; gap: 12px; }
.tabletMock__lines span { height: 18px; border-radius: 99px; background: #d0ddf0; }
.tabletMock__lines span:nth-child(2) { width: 78%; }
.tabletMock__lines span:nth-child(3) { width: 92%; }
.tabletMock__lines span:nth-child(4) { width: 62%; }
.heroBadges {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.heroBadges div {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  font-weight: 800;
}
.heroBadges svg { color: #9cc6ff; font-size: 24px; flex: 0 0 auto; }

.trustStrip { background: #fff; border-bottom: 1px solid var(--line); }
.trustStrip__inner { min-height: 116px; display: grid; place-items: center; text-align: center; gap: 8px; }
.trustStrip strong { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: #32415a; }
.trustStrip span { color: var(--muted); }
.section { padding: 82px 0; }
.sectionHead { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.sectionHead h2, .insights h2, .finalCta h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; }
.sectionHead p, .insights p, .finalCta p { margin: 0; color: var(--muted); font-size: 17px; }
.cardsGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.serviceCard {
  min-height: 245px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 26px 20px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.serviceCard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(43,116,239,.26); }
.serviceCard__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid #dce8fb;
  font-size: 30px;
}
.serviceCard h3 { margin: 0 0 10px; line-height: 1.15; font-size: 17px; }
.serviceCard p { margin: 0; color: var(--muted); font-size: 14px; }

.insights { background: linear-gradient(180deg, #f8fbff, #eef4ff); }
.insights__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.insights__content p { max-width: 500px; }
.checkList { margin: 24px 0 28px; padding: 0; list-style: none; display: grid; gap: 12px; font-weight: 800; }
.checkList li { display: flex; align-items: flex-start; gap: 10px; }
.checkList svg { color: var(--blue); margin-top: 3px; flex: 0 0 auto; }

.dashTop { position: relative; z-index: 2; display: flex; gap: 10px; margin-bottom: 46px; }
.dashTop span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.75); }
.dashHeroLine { height: 82px; border-radius: 18px; background: linear-gradient(135deg, #eef5ff, #fff); border: 1px solid #dce8fb; margin-bottom: 18px; }
.dashGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.dashGrid span { height: 74px; border-radius: 16px; background: #f1f6ff; border: 1px solid #dde8f8; }
.dashTable { display: grid; gap: 10px; }
.dashTable span { height: 24px; border-radius: 99px; background: #e3ebf7; }
.dashTable span:nth-child(2) { width: 86%; }
.dashTable span:nth-child(3) { width: 94%; }
.dashTable span:nth-child(4) { width: 75%; }
.dashTable span:nth-child(5) { width: 90%; }
.metricGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.metricCard { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); padding: 20px; text-align: center; }
.metricCard strong { display: block; font-size: 34px; line-height: 1; color: var(--blue); letter-spacing: -.04em; margin-bottom: 8px; }
.metricCard span { color: #33425b; font-weight: 800; font-size: 13px; }

.compliance { background: #fff; }
.complianceGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.complianceItem { text-align: center; padding: 12px; }
.complianceItem > div {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff4fb;
  color: var(--navy-2);
  font-size: 24px;
}
.complianceItem h3 { margin: 0 0 8px; font-size: 16px; }
.complianceItem p { margin: 0; color: var(--muted); font-size: 14px; }

.finalCta {
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(82,154,255,.34), transparent 30%),
    linear-gradient(135deg, #071a3d, #082a63);
}
.finalCta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.finalCta p { color: rgba(255,255,255,.78); max-width: 620px; }
.footer { background: #061635; color: #fff; padding: 36px 0; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: start; }
.footerBrand { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.footerBrand p { grid-column: 2; margin: -6px 0 0; color: rgba(255,255,255,.62); }
.footerLinks { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.72); font-size: 14px; }
.footerLinks a:hover { color: #fff; }
.footerCopy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; color: rgba(255,255,255,.58); font-size: 13px; }
.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 850;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.toTop.is-show { opacity: 1; transform: translateY(0); pointer-events: auto; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.is-rtl .btn i[data-lucide="arrow-right"] { transform: scaleX(-1); }
.is-rtl .reportCard { left: auto; right: 6%; transform: rotate(7deg); }
.is-rtl .tabletMock { right: auto; left: 0; transform: rotate(-4deg); }
.is-rtl .checkList li { flex-direction: row-reverse; text-align: right; justify-content: flex-end; }
.is-rtl .footerBrand { direction: rtl; }
.heroVisual--image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  isolation: isolate;
}

.heroVisual--image::before {
  content: "";
  position: absolute;
  inset: 8% 3% 2% 10%;
  background:
      radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.26), transparent 58%),
      linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border-radius: 34px;
  filter: blur(2px);
  opacity: 0.9;
  z-index: -1;
}

.heroVisual__image {
  display: block;
  width: min(90%, 650px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.34));
  transform: translateX(18px);
}

html.is-rtl .heroVisual__image {
  transform: translateX(-18px);
}
.brand__logo--image {
display: inline-flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: transparent;
border: 0;
box-shadow: none;
}

.brand__logo--image img {
display: block;
width: 60px;
height: 60px;
object-fit: contain;
}

.dashboardPreview--image img {
display: block;
width: min(90%, 760px);
height: auto;
object-fit: contain;
border-radius: 24px;
box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

@media (max-width: 768px) {
.dashboardPreview--image img {
    width: 100%;
    border-radius: 18px;
}
}

@media (max-width: 980px) {
  .heroVisual--image {
      min-height: auto;
      margin-top: 28px;
  }

  .heroVisual__image {
      width: min(90%, 560px);
      transform: none;
  }

  html.is-rtl .heroVisual__image {
      transform: none;
  }
}

@media (max-width: 560px) {
  .heroVisual__image {
      width: 118%;
      max-width: none;
      margin-inline: -9%;
  }
}
@media (max-width: 1100px) {
  .mainNav, .loginLink, .navActions > .btn { display: none; }
  .burger { display: grid; place-items: center; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .heroVisual { min-height: 440px; max-width: 760px; width: 100%; margin-inline: auto; }
  .cardsGrid { grid-template-columns: repeat(3, 1fr); }
  .insights__grid { grid-template-columns: 1fr; }
  .complianceGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .brand__name { font-size: 19px; }
  .brand__logo { width: 38px; height: 38px; }
  .lang__btn span { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 54px); }
  .hero h1 { font-size: clamp(36px, 12vw, 56px); }
  .hero__lead { font-size: 16px; }
  .hero__actions, .finalCta__inner { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .heroVisual { min-height: 410px; transform: scale(.88); transform-origin: top center; margin-bottom: -44px; }
  .reportCard { left: 0; width: 315px; }
  .tabletMock { right: 0; width: 305px; }
  .heroBadges { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .cardsGrid, .metricGrid, .complianceGrid { grid-template-columns: 1fr; }
  .dashGrid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .heroVisual { transform: scale(.76); margin-inline: -40px; margin-bottom: -90px; }
  .reportCard { width: 300px; }
  .tabletMock { width: 290px; }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }
}

/* Extra narrow phones */
@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }
}

/* Process step cards */
.cardsGrid.cardsGrid--steps {
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 52px;
max-width: 1200px;
margin-inline: auto;
}

.serviceCard--step {
position: relative;
}

.processArrow {
position: absolute;
top: 50%;
inset-inline-end: -46px;
width: 42px;
height: 42px;
transform: translateY(-50%);
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: #ffffff;
border: 1px solid rgba(43, 116, 239, 0.24);
box-shadow: 0 14px 34px rgba(8, 27, 70, 0.12);
color: var(--blue);
font-size: 24px;
font-weight: 900;
line-height: 1;
direction: ltr;
unicode-bidi: isolate;
}

html[dir="rtl"] .processArrow,
html.is-rtl .processArrow,
body[dir="rtl"] .processArrow,
body.is-rtl .processArrow {
inset-inline-end: auto;
inset-inline-start: -46px;
}
@media (max-width: 1100px) {
.cardsGrid.cardsGrid--steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.processArrow {
  display: none;
}
}
@media (max-width: 760px) {
.cardsGrid.cardsGrid--steps {
  grid-template-columns: 1fr;
}
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}



.finalCta .btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

.cookieNotice {
  position: fixed;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 1200;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  width: min(980px, calc(100% - 36px));
  margin-inline: auto;
  padding: 18px 18px 18px 20px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 22, 51, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(8, 27, 70, 0.22);
  backdrop-filter: blur(14px);
}

.cookieNotice[hidden] {
  display: none;
}

.cookieNotice__content {
  min-width: 0;
}

.cookieNotice__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.cookieNotice__content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookieNotice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookieNotice__link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.cookieNotice__link:hover {
  text-decoration: underline;
}

.cookieNotice__btn {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-2), #1048ac);
  box-shadow: 0 14px 24px rgba(24, 91, 199, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.cookieNotice__btn:hover {
  transform: translateY(-1px);
}

html[dir="rtl"] .cookieNotice,
html.is-rtl .cookieNotice {
  text-align: right;
}

@media (max-width: 760px) {
  .cookieNotice {
    inset-inline: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookieNotice__actions {
    justify-content: space-between;
  }

  .cookieNotice__btn {
    flex: 1 1 auto;
  }
}


/* ===========================
   Business Value Section
   Why integrity assessments matter
=========================== */

.businessValue--split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(43, 116, 239, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.businessValue--split::before {
  content: "";
  position: absolute;
  inset: auto -160px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(43, 116, 239, 0.08);
  pointer-events: none;
}

.businessValueSplit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: stretch;
}

.businessValueSplit__main {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  align-self: start;
  min-height: 520px;
  padding: 42px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(119, 181, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #071a3d 0%, #082a63 100%);
  box-shadow: 0 28px 80px rgba(8, 27, 70, 0.22);
}

.businessValueSplit__main .miniKicker {
  color: #9cc6ff;
}

.businessValueSplit__main h2 {
  margin: 18px 0 16px;
  max-width: 640px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.businessValueSplit__main p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.businessValueSplit__highlight {
  margin-top: 34px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.businessValueSplit__highlight i {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
  color: #9cc6ff;
}

.businessValueSplit__highlight span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

/* Right-side list */
.businessValueList {
  display: grid;
  gap: 14px;
}

.businessValueItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 22, 51, 0.10);
  box-shadow: 0 14px 34px rgba(8, 27, 70, 0.08);

  text-align: left;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.businessValueItem:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(43, 116, 239, 0.24);
}

.businessValueItem__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: grid;
  place-items: center;

  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid #dce8fb;
  font-size: 27px;
}

.businessValueItem__icon i {
  width: 28px;
  height: 28px;
}

.businessValueItem h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.businessValueItem p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* RTL support */
html.is-rtl .businessValueSplit,
html[dir="rtl"] .businessValueSplit {
  direction: rtl;
}

html.is-rtl .businessValueSplit__main,
html[dir="rtl"] .businessValueSplit__main {
  text-align: right;
}

html.is-rtl .businessValueSplit__highlight,
html[dir="rtl"] .businessValueSplit__highlight {
  flex-direction: row;
  text-align: right;
}

html.is-rtl .businessValueItem,
html[dir="rtl"] .businessValueItem {
  flex-direction: row;
  text-align: right;
}

/* Mobile menu highlighted actions */
.mobileMenu__cta {
  min-height: 52px;
  margin-top: 6px;
  padding: 14px 16px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-bottom: 0 !important;
  border-radius: 16px;
  font-weight: 900;
  text-align: center;
}

.mobileMenu__cta i {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.mobileMenu__cta--primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue-2), #1048ac);
  box-shadow: 0 14px 26px rgba(24, 91, 199, 0.28);
}

.mobileMenu__cta--secondary {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobileMenu__cta--primary:hover,
.mobileMenu__cta--secondary:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
}

html.is-rtl .mobileMenu__cta,
html[dir="rtl"] .mobileMenu__cta {
  flex-direction: row;
}

/* Tablet */
@media (max-width: 980px) {
  .businessValueSplit {
    grid-template-columns: 1fr;
  }

  .businessValueSplit__main {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 32px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .businessValueSplit__main {
    padding: 26px;
    border-radius: 24px;
  }

  .businessValueSplit__main h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .businessValueSplit__main p {
    font-size: 16px;
  }

  .businessValueItem {
    gap: 14px;
    padding: 20px;
  }

  .businessValueItem__icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  .businessValueItem__icon i {
    width: 25px;
    height: 25px;
  }

  .businessValueItem h3 {
    font-size: 17px;
  }

  .businessValueItem p {
    font-size: 14px;
  }
}


/* Desktop navigation dropdown */
/* Desktop navigation dropdown */
.navDrop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navDrop__btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  transition: color .2s ease;
}

.navDrop__btn:hover,
.navDrop:focus-within .navDrop__btn,
.navDrop:hover .navDrop__btn {
  color: #ffffff;
}

.navDrop__btn i {
  width: 15px;
  height: 15px;
  transition: transform .18s ease;
}

.navDrop:hover .navDrop__btn i,
.navDrop:focus-within .navDrop__btn i {
  transform: rotate(180deg);
}

/* Important: use physical left, not logical inset-inline-start */
.navDrop__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  right: auto;

  width: 270px;
  padding: 10px;
  border-radius: 18px;

  background: rgba(255,255,255,.98);
  border: 1px solid rgba(11, 22, 51, 0.10);
  box-shadow: 0 22px 60px rgba(8, 27, 70, 0.22);

  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}

.navDrop:hover .navDrop__menu,
.navDrop:focus-within .navDrop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navDrop__menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  right: auto;

  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(11, 22, 51, 0.10);
  border-top: 1px solid rgba(11, 22, 51, 0.10);
  transform: translateX(-50%) rotate(45deg);
}

.navDrop__menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.navDrop__menu a:hover {
  background: #eef4ff;
  color: var(--blue);
}

/* RTL only changes text alignment, not dropdown position */
html.is-rtl .navDrop__menu,
html[dir="rtl"] .navDrop__menu {
  text-align: right;
  direction: rtl;
}

@media (max-width: 1100px) {
  .navDrop {
    display: none;
  }
}

/* Mobile menu dropdown / accordion */
.mobileDrop {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobileDrop__summary {
  list-style: none;
  min-height: 52px;
  padding: 14px 4px;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 800;
}

.mobileDrop__summary::-webkit-details-marker {
  display: none;
}

.mobileDrop__summary i {
  width: 18px;
  height: 18px;
  color: #9cc6ff;
  transition: transform .18s ease;
}

.mobileDrop[open] .mobileDrop__summary i {
  transform: rotate(180deg);
}

.mobileDrop__panel {
  display: grid;
  gap: 4px;
  padding: 0 0 12px;
}

.mobileDrop__panel a {
  border-bottom: 0;
  padding: 10px 14px;
  margin-inline-start: 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.04);
  font-size: 14px;
}

.mobileDrop__panel a:hover {
  color: #ffffff;
  background: rgba(255,255,255,.08);
}

html.is-rtl .mobileDrop__panel a,
html[dir="rtl"] .mobileDrop__panel a {
  margin-inline-start: 0;
  margin-inline-end: 10px;
}


/* ===========================
   Assessment Chapters Section
=========================== */

.chaptersBlock {
  background:
    radial-gradient(circle at 90% 10%, rgba(43, 116, 239, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.chaptersBlock .sectionHead {
  max-width: 900px;
}

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

.chapterPill {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11, 22, 51, 0.10);
  box-shadow: 0 12px 28px rgba(8, 27, 70, 0.07);

  color: var(--text);
  font-weight: 850;
  line-height: 1.25;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.chapterPill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(43, 116, 239, 0.24);
}

.chapterPill i {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--blue);
}

.chapterPill span {
  min-width: 0;
  font-size: 15px;
}

.chaptersNote {
  max-width: 960px;
  margin: 28px auto 0;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;

  border-radius: 18px;
  background: rgba(24, 91, 199, 0.07);
  border: 1px solid rgba(24, 91, 199, 0.14);
  color: #31415f;
}

.chaptersNote i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--blue);
}

.chaptersNote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

html.is-rtl .chapterPill,
html[dir="rtl"] .chapterPill,
html.is-rtl .chaptersNote,
html[dir="rtl"] .chaptersNote {
  text-align: right;
  flex-direction: row;
}

@media (max-width: 1100px) {
  .chaptersGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .chaptersGrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chapterPill {
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .chapterPill span {
    font-size: 14px;
  }

  .chaptersNote {
    flex-direction: column;
    padding: 16px;
  }
}

.heroBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.heroBadge svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.heroBadge--support {
  border-color: rgba(80, 210, 255, 0.36);
  background: linear-gradient(
      135deg,
      rgba(80, 210, 255, 0.16),
      rgba(255, 255, 255, 0.08)
  );
}

@media (max-width: 640px) {
  .heroBadges {
      justify-content: flex-start;
      gap: 10px;
      margin-top: 22px;
  }

  .heroBadge {
      width: 100%;
      justify-content: center;
      min-height: 44px;
      padding: 11px 14px;
      font-size: 13.5px;
      white-space: normal;
      text-align: center;
  }
}