:root {
  --ink: #0d1b2a;
  --muted: #5f6f86;
  --line: #d9e4f2;
  --soft: #f4f8fc;
  --soft-2: #eaf2fb;
  --brand: #113b73;
  --brand-2: #0b2547;
  --accent: #1fbf9a;
  --accent-2: #d8fff5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 27, 42, .12);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1200px;
  --header: 82px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-140%);
  background: var(--brand);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 59, 115, .08);
}

.top-alert {
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: .45rem clamp(1rem, 3vw, 2rem);
  font-size: .9rem;
}

.top-alert a:first-child span {
  color: var(--accent);
  font-weight: 700;
  margin-inline-start: .35rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  white-space: nowrap;
}

.top-actions a {
  opacity: .92;
}

.header-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: .75rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 25%, var(--accent), #53d8bb 20%, var(--brand) 64%, var(--brand-2));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31, 191, 154, .28);
}

.brand strong {
  display: block;
  line-height: 1;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: .73rem;
  margin-top: .15rem;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
}

.nav-link,
.nav-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .7rem .82rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .93rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.nav-link:hover,
.nav-button:hover,
.nav-item:focus-within .nav-button {
  background: var(--soft);
  color: var(--brand);
}

.nav-item {
  position: relative;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel {
  position: fixed;
  left: 50%;
  top: 121px;
  width: min(1120px, calc(100vw - 32px));
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .18s ease;
  background: var(--white);
  border: 1px solid rgba(17, 59, 115, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.mega-panel.slim {
  width: min(700px, calc(100vw - 32px));
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.25fr .85fr .8fr .8fr .8fr;
  gap: .75rem;
  max-height: min(74vh, 720px);
  overflow: auto;
  padding: .35rem;
}

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

.mega-col {
  min-width: 0;
}

.mega-col h3 {
  margin: .35rem .5rem .7rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
}

.mega-list {
  display: grid;
  gap: .25rem;
}

.mega-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: .65rem;
  padding: .65rem;
  border-radius: 16px;
}

.mega-link:hover {
  background: var(--soft);
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  font-size: .9rem;
  line-height: 1.25;
}

.mega-link small {
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.3;
  margin-top: .15rem;
}

.mega-icon .icon-svg {
  width: 34px;
  height: 34px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-inline-start: auto;
}

.primary-button,
.ghost-button,
.icon-button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-button {
  min-height: 46px;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #58dbc3);
  color: #06251e;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(31, 191, 154, .28);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(31, 191, 154, .34);
}

.primary-button.small {
  min-height: 40px;
  padding: .58rem .95rem;
}

.ghost-button {
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 750;
}

.ghost-button:hover {
  background: var(--soft-2);
}

.language-button {
  white-space: nowrap;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand);
  font-size: 1.25rem;
}

.menu-button {
  display: none;
}

.language-panel {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 15, 30, .58);
  z-index: 130;
}

.lang-open .language-panel {
  display: flex;
}

.language-card {
  width: min(1040px, 100%);
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(4, 12, 28, .35);
  overflow: hidden;
}

.language-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
}

.language-card-head h2 {
  margin: .1rem 0 0;
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 1rem 1.5rem;
  background: var(--soft);
}

.language-pill {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .8rem;
  background: var(--white);
}

.language-pill.active {
  border-color: var(--accent);
  background: var(--accent-2);
}

.language-pill small {
  color: var(--muted);
  font-weight: 800;
}

.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 1.5rem 1.5rem;
}

.region-group h3 {
  margin: 0 0 .6rem;
  color: var(--brand);
}

.region-links {
  display: grid;
  gap: .35rem;
}

.region-links a {
  border-radius: 14px;
  padding: .55rem .7rem;
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  gap: .75rem;
}

.region-links a:hover {
  background: var(--soft-2);
}

.region-links small {
  color: var(--muted);
  white-space: nowrap;
}

.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.section-pad.compact {
  padding-top: clamp(2.6rem, 5vw, 4rem);
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
}

.hero,
.trust-band,
.split-section,
.image-copy,
.platform-section,
.benefits,
.services,
.feature-split,
.cta,
.subhero,
.detail-grid,
.process,
.page-content {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 130px);
}

.eyebrow {
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  color: var(--brand);
  font-weight: 900;
}

.hero h1,
.subhero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.hero .lead,
.subhero .lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.mini-proof span {
  font-size: .82rem;
  font-weight: 800;
  color: var(--brand);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .38rem .62rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -3% 12%;
  background: radial-gradient(circle at 50% 40%, rgba(31, 191, 154, .28), transparent 55%);
  filter: blur(18px);
  z-index: -1;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  gap: 2rem;
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding-inline: clamp(1.4rem, 4vw, 2.5rem);
}

.trust-band p:last-child {
  margin: 0;
  color: var(--muted);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.logo-strip span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--white);
  border: 1px dashed rgba(17, 59, 115, .22);
  color: var(--muted);
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.copy-block h2,
.section-head h2,
.platform-copy h2,
.feature-card h2,
.cta h2,
.detail-card h2,
.process h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.copy-block h2 span {
  color: var(--brand);
}

.copy-block p,
.section-head p,
.platform-copy p,
.feature-card p,
.cta p,
.detail-card p,
.page-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  color: var(--brand);
  font-weight: 900;
}

.text-link.light {
  color: var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.stat-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -.05em;
}

.stat-card span {
  display: block;
  margin-top: .4rem;
  font-weight: 900;
}

.stat-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.alt-bg {
  background: linear-gradient(180deg, var(--soft), rgba(244, 248, 252, .45));
  border-radius: 36px;
}

.image-copy,
.platform-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.image-frame,
.dashboard-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1.5rem;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.industry-icon .icon-svg {
  width: 42px;
  height: 42px;
}

.platform-section {
  border-radius: 36px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: var(--white);
  padding-inline: clamp(1.4rem, 4vw, 3rem);
}

.platform-section .eyebrow,
.platform-section p,
.platform-section li,
.platform-section h2 {
  color: var(--white);
}

.platform-section .platform-copy p {
  color: rgba(255,255,255,.78);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.8rem;
  display: grid;
  gap: .7rem;
}

.check-list li {
  position: relative;
  padding-inline-start: 2rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #06251e;
  font-size: .85rem;
  font-weight: 900;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head.wide {
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

.audience-list article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  min-height: 190px;
}

.audience-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--accent-2);
  color: var(--brand);
  font-weight: 900;
}

.audience-list p {
  margin-bottom: 0;
  font-weight: 750;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .95rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(13, 27, 42, .05);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  transition: .2s ease;
}

.service-card h3 {
  margin: .9rem 0 .45rem;
  line-height: 1.15;
  font-size: 1.12rem;
}

.service-card p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .96rem;
}

.service-card .text-link {
  margin-top: auto;
}

.service-icon .icon-svg,
.subhero-visual > .icon-svg {
  width: 54px;
  height: 54px;
}

.icon-svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--brand);
}

.icon-bg {
  fill: var(--accent-2);
  stroke: none;
}

.platform-section .icon-svg,
.feature-card.dark .icon-svg {
  color: var(--accent);
}

.feature-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
}

.feature-card {
  border-radius: 32px;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
}

.feature-card.dark {
  background: var(--brand-2);
  color: var(--white);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.feature-card.dark .eyebrow,
.feature-card.dark p,
.feature-card.dark h2 {
  color: var(--white);
}

.feature-card.security {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--soft);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 36px;
  background: radial-gradient(circle at 10% 30%, rgba(31, 191, 154, .24), transparent 30%), var(--brand);
  color: var(--white);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.cta .eyebrow,
.cta p,
.cta h2 {
  color: var(--white);
}

.cta p {
  opacity: .82;
}

.subhero {
  min-height: 460px;
}

.small-hero {
  min-height: 360px;
}

.breadcrumb {
  display: flex;
  gap: .5rem;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 850;
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  gap: 2rem;
  align-items: center;
}

.subhero-visual {
  min-height: 280px;
  border-radius: 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.subhero-visual > .icon-svg {
  position: absolute;
  top: 1.2rem;
  inset-inline-start: 1.2rem;
  z-index: 2;
}

.subhero-visual.single-icon > .icon-svg {
  width: 78px;
  height: 78px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 2rem);
  box-shadow: 0 12px 30px rgba(13, 27, 42, .06);
}

.detail-card.large {
  min-height: 360px;
}

.deliverable-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .7rem;
}

.deliverable-list li {
  padding: .85rem;
  border-radius: 16px;
  background: var(--soft);
  font-weight: 800;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}

.process-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  min-height: 150px;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--accent-2);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 1rem;
}

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

.placeholder-box {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--soft);
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: .9rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: .35rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .9rem 1rem;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 191, 154, .2);
  border-color: var(--accent);
}

.form-note {
  margin: 0;
  font-size: .9rem;
}

.site-footer {
  background: #071a32;
  color: var(--white);
  padding: 3rem clamp(1rem, 3vw, 2rem) 1.25rem;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.footer-brand p,
.footer-top a,
.footer-top address,
.footer-top li {
  color: rgba(255,255,255,.72);
}

.footer-top h3 {
  margin: 0 0 .9rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .45rem;
}

.footer-top a:hover {
  color: var(--white);
}

.footer-top address {
  font-style: normal;
}

.socials {
  display: flex;
  gap: .45rem;
  margin-top: 1rem;
}

.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
}

.site-footer .brand small {
  color: rgba(255,255,255,.62);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.footer-bottom nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

[dir="rtl"] .check-list li {
  padding-inline-start: 0;
  padding-inline-end: 2rem;
}

[dir="rtl"] .check-list li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions .primary-button.small {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-shell {
    justify-content: space-between;
  }

  .top-alert {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    z-index: 160;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    width: min(440px, 92vw);
    background: var(--white);
    transform: translateX(105%);
    transition: transform .22s ease;
    box-shadow: -30px 0 80px rgba(4,12,28,.28);
  }

  [dir="rtl"] .mobile-drawer {
    transform: translateX(-105%);
  }

  .menu-open .mobile-drawer {
    transform: translateX(0);
  }

  .drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(4,12,28,.45);
  }

  .menu-open .drawer-backdrop {
    display: block;
  }

  .drawer-head {
    min-height: 78px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .drawer-scroll {
    height: calc(100vh - 78px);
    overflow: auto;
    padding: 1rem;
  }

  .mobile-section-title {
    color: var(--brand);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .76rem;
    margin: 1rem 0 .5rem;
  }

  .mobile-details {
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: .55rem;
    padding: .2rem .8rem;
  }

  .mobile-details summary {
    cursor: pointer;
    padding: .75rem 0;
    font-weight: 900;
  }

  .mobile-details a,
  .mobile-links a {
    display: block;
    padding: .55rem 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
  }

  .mobile-links {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: .2rem .8rem;
  }

  .mobile-links a:first-child {
    border-top: 0;
  }

  .hero,
  .split-section,
  .image-copy,
  .platform-section,
  .feature-split,
  .subhero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .stats-grid,
  .audience-list,
  .service-grid,
  .process-steps,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions {
    grid-template-columns: 1fr;
    max-height: 60vh;
    overflow: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .top-actions,
  .language-button {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-actions,
  .cta,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-band,
  .logo-strip,
  .stats-grid,
  .audience-list,
  .service-grid,
  .process-steps,
  .footer-top,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section-head.wide {
    display: block;
  }

  .language-card {
    max-height: 92vh;
    overflow: auto;
  }

  .language-pills {
    padding: .85rem;
  }

  .regions {
    padding: .85rem;
  }

  .section-pad {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .top-alert {
    font-size: .82rem;
  }
}

/* v2 visual refinement: smoother premium layout */
:root {
  --ink: #071525;
  --muted: #607086;
  --line: rgba(24, 61, 104, .12);
  --soft: #f5f8fc;
  --soft-2: #eaf4ff;
  --brand: #0d4e89;
  --brand-2: #071e36;
  --brand-3: #0a6d9c;
  --accent: #34d6b4;
  --accent-2: #e7fff8;
  --amber: #ffcf70;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 28, 52, .14);
  --shadow-soft: 0 16px 45px rgba(8, 28, 52, .08);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1240px;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(52, 214, 180, .12), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(13, 78, 137, .12), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 34rem);
}

.site-header {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(13, 78, 137, .1);
  box-shadow: 0 8px 30px rgba(8, 28, 52, .045);
}

.top-alert {
  background: linear-gradient(90deg, #061a31, #0d4e89 62%, #087b8f);
  min-height: 38px;
  font-size: .86rem;
}

.header-shell {
  min-height: 74px;
}

.brand-mark {
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.42), transparent 32%),
    conic-gradient(from 160deg, #34d6b4, #0d4e89, #071e36, #34d6b4);
  box-shadow: 0 14px 30px rgba(13, 78, 137, .26);
}

.brand strong { font-size: 1.12rem; }
.brand small { font-size: .76rem; color: #6b7890; }

.nav-link,
.nav-button {
  padding: .68rem .82rem;
  font-size: .91rem;
  color: #24364d;
}

.nav-link:hover,
.nav-button:hover,
.nav-item:focus-within .nav-button {
  background: linear-gradient(180deg, rgba(234, 244, 255, .9), rgba(245, 248, 252, .75));
  box-shadow: inset 0 0 0 1px rgba(13, 78, 137, .08);
}

.mega-panel {
  top: 113px;
  border: 1px solid rgba(13, 78, 137, .13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,253,255,.98));
  box-shadow: 0 26px 80px rgba(6, 26, 49, .18);
  padding: .75rem;
}

.mega-inner {
  gap: .6rem;
}

.mega-col {
  border-radius: 22px;
  padding: .5rem;
  background: rgba(245, 248, 252, .58);
}

.mega-link {
  border-radius: 18px;
  padding: .72rem;
  align-items: flex-start;
}

.mega-link:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 28, 52, .09);
  transform: translateY(-1px);
}

.mega-link strong { color: #10243b; }
.mega-link small { line-height: 1.35; }

.primary-button {
  min-height: 48px;
  padding: .84rem 1.22rem;
  color: #04201a;
  background: linear-gradient(135deg, #41e0bd, #9af5df 55%, #ffdd8d);
  box-shadow: 0 18px 42px rgba(52, 214, 180, .34);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 56px rgba(52, 214, 180, .39);
}

.ghost-button {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(13, 78, 137, .12);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(8, 28, 52, .055);
}

.ghost-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.section-pad {
  padding: clamp(4.6rem, 8vw, 7.6rem) clamp(1rem, 3vw, 2rem);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, .97fr) minmax(340px, 1.03fr);
  gap: clamp(2.2rem, 6vw, 5.8rem);
  min-height: calc(100vh - 118px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem -1.5rem auto auto;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  background: radial-gradient(circle, rgba(52,214,180,.18), transparent 62%);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #0a6d9c;
  letter-spacing: .14em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(52,214,180,.13);
}

.hero h1,
.subhero h1 {
  max-width: 12ch;
  color: #071525;
  text-wrap: balance;
}

.hero .lead,
.subhero .lead {
  color: #52657d;
  max-width: 58ch;
  line-height: 1.75;
}

.hero-actions { margin: 2.15rem 0 1.7rem; }

.mini-proof {
  gap: .7rem;
  max-width: 680px;
}

.mini-proof span {
  background: rgba(255,255,255,.82);
  border-color: rgba(13,78,137,.13);
  color: #244564;
  box-shadow: 0 10px 22px rgba(8, 28, 52, .055);
}

.hero-visual {
  border-radius: 38px;
  padding: clamp(.75rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,252,255,.88));
  border: 1px solid rgba(13, 78, 137, .13);
  box-shadow: 0 35px 90px rgba(7, 30, 54, .16);
  overflow: hidden;
}

.hero-visual::before {
  inset: auto -10% -18% 8%;
  width: 70%;
  height: 52%;
  background: radial-gradient(circle at 50% 40%, rgba(52,214,180,.34), transparent 64%);
  filter: blur(24px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 22px 42px rgba(8,28,52,.12));
}

.trust-band {
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,248,252,.86));
  box-shadow: var(--shadow-soft);
  border-radius: 34px;
}

.logo-strip span {
  background: #fff;
  border: 1px solid rgba(13,78,137,.1);
  color: #506984;
  box-shadow: 0 10px 24px rgba(8,28,52,.05);
}

.split-section,
.image-copy,
.platform-section,
.feature-split,
.detail-grid,
.process,
.page-content {
  position: relative;
}

.copy-block h2,
.section-head h2,
.platform-copy h2,
.feature-card h2,
.cta h2,
.detail-card h2,
.process h2 {
  color: #071525;
  text-wrap: balance;
}

.copy-block p,
.section-head p,
.platform-copy p,
.feature-card p,
.cta p,
.detail-card p,
.page-content p {
  line-height: 1.75;
}

.stat-card,
.service-card,
.industry-card,
.detail-card,
.audience-list article {
  background: rgba(255,255,255,.9);
  border-color: rgba(13,78,137,.12);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  overflow: hidden;
  position: relative;
}
.stat-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -26px;
  bottom: -30px;
  border-radius: 50%;
  background: rgba(52,214,180,.14);
}

.stat-card strong {
  color: #0d4e89;
}

.alt-bg {
  background:
    radial-gradient(circle at 5% 12%, rgba(52,214,180,.12), transparent 22rem),
    linear-gradient(180deg, rgba(245,248,252,.96), rgba(255,255,255,.72));
  border: 1px solid rgba(13,78,137,.08);
  border-radius: 42px;
}

.image-frame,
.dashboard-card {
  border-radius: 32px;
  border-color: rgba(13,78,137,.13);
  box-shadow: 0 28px 72px rgba(7,30,54,.14);
}

.industry-card {
  transition: transform .18s ease, box-shadow .18s ease;
}
.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8,28,52,.1);
}

.platform-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(52,214,180,.28), transparent 26rem),
    radial-gradient(circle at 90% 88%, rgba(255,207,112,.17), transparent 20rem),
    linear-gradient(135deg, #071e36, #0d4e89 58%, #087b8f);
  box-shadow: 0 30px 80px rgba(7,30,54,.2);
}

.platform-section h2,
.feature-card.dark h2,
.cta h2 { color: #fff; }

.check-list li::before {
  background: linear-gradient(135deg, var(--accent), #ffdd8d);
}

.audience-list article {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.audience-list article::after {
  content: "";
  position: absolute;
  inset: auto -24px -32px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(13,78,137,.055);
}
.audience-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(8,28,52,.11);
}

.service-card {
  min-height: 258px;
  padding: 1.35rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-3), transparent);
  opacity: .75;
}
.service-card:hover {
  border-color: rgba(52,214,180,.44);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(8,28,52,.14);
}
.service-card h3 { font-size: 1.16rem; }

.service-icon .icon-svg,
.industry-icon .icon-svg,
.mega-icon .icon-svg {
  color: #0d4e89;
}
.icon-bg { fill: rgba(52,214,180,.14); }

.feature-card {
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.feature-card.dark {
  background:
    radial-gradient(circle at 10% 18%, rgba(52,214,180,.24), transparent 16rem),
    linear-gradient(145deg, #061a31, #0b355e);
  box-shadow: 0 30px 76px rgba(7,30,54,.2);
}

.feature-card.security {
  background:
    radial-gradient(circle at 18% 16%, rgba(52,214,180,.16), transparent 18rem),
    #fff;
}

.cta {
  background:
    radial-gradient(circle at 8% 18%, rgba(52,214,180,.28), transparent 22rem),
    radial-gradient(circle at 88% 72%, rgba(255,207,112,.17), transparent 18rem),
    linear-gradient(135deg, #071e36, #0d4e89);
  box-shadow: 0 32px 80px rgba(7,30,54,.2);
}

.subhero {
  min-height: 480px;
}
.subhero-visual {
  background:
    radial-gradient(circle at 75% 20%, rgba(52,214,180,.18), transparent 18rem),
    linear-gradient(180deg, #fff, #f5f8fc);
  box-shadow: var(--shadow-soft);
}

.detail-card {
  border-radius: 30px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(13,78,137,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 10%, rgba(52,214,180,.13), transparent 22rem),
    linear-gradient(180deg, #061a31, #04111f);
}

@media (max-width: 1120px) {
  .mega-panel { top: 112px; }
}

@media (max-width: 940px) {
  .hero { min-height: auto; }
  .hero h1, .subhero h1 { max-width: none; }
  .hero-visual { order: -1; }
}

@media (max-width: 720px) {
  .top-alert { display: none; }
  .hero-visual { border-radius: 28px; }
  .hero-actions .primary-button,
  .hero-actions .ghost-button { width: 100%; }
  .stats-grid, .logo-strip, .industry-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   CaRD LSR – component additions (static HTML build, no external assets)
   ======================================================================= */

/* Decorative pseudo-elements (hero/stat/audience glows) use negative offsets;
   clip horizontally so they never create a horizontal scrollbar. */
html, body { overflow-x: clip; }

/* --- Brand-aligned, less generic look ---------------------------------- */
/* Calmer page background (drop the multi-blob SaaS gradient). */
body {
  background: linear-gradient(180deg, #f7fafd 0%, #ffffff 26rem);
}
.hero::before { display: none; }

/* Confident CaRD-blue primary buttons instead of the mint→amber gradient. */
.primary-button {
  background: linear-gradient(135deg, #1b75bb, #0d4e89);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 78, 137, .28);
}
.primary-button:hover {
  box-shadow: 0 18px 38px rgba(13, 78, 137, .36);
}
/* Disciplined accent: teal check marks (no amber). */
.check-list li::before { background: var(--accent); color: #06251e; }

/* Mega-menu: four product columns. */
.mega-inner.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nav-button span { font-size: .7rem; opacity: .65; }

/* Brand lockup: CaRD logo + LSR wordmark */
.brand-logo { height: 42px; width: auto; display: block; }
.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(13, 78, 137, .22);
  display: inline-block;
}
.brand-text strong { display: block; line-height: 1; font-size: 1.18rem; letter-spacing: .02em; color: #0d4e89; }
.brand-text small { display: block; color: #6b7890; font-size: .72rem; margin-top: .2rem; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: rgba(255,255,255,.62); }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(13, 78, 137, .16);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.lang-switch a {
  padding: .42rem .66rem;
  font-weight: 800;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1;
}
.lang-switch a.active { background: var(--brand); color: #fff; }
.lang-switch a:not(.active):hover { background: var(--soft); }

/* Partner strip (trust band) */
.partner-strip {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.partner-strip img { height: 58px; width: auto; }
.partner-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.partner-badges span {
  font-size: .8rem;
  font-weight: 800;
  color: #244564;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .42rem .72rem;
}

/* Process step descriptions */
.process-steps p { margin: .55rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* Centered section wrappers */
.faq-section, .contact-section { max-width: var(--max); margin: 0 auto; }

/* FAQ accordion */
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: .7rem; }
.faq-item {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.04rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--brand);
  font-weight: 900;
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0 0 1.1rem; color: var(--muted); line-height: 1.7; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-facts { margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-facts a { color: var(--brand); font-weight: 700; }
.contact-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.captcha-label input { max-width: 170px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 500 !important;
  font-size: .9rem;
  color: var(--muted);
}
.consent input { margin-top: .2rem; flex: none; }
.consent a { color: var(--brand); font-weight: 700; text-decoration: underline; }
.form-alert {
  border-radius: 16px;
  padding: .95rem 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: .94rem;
}
.form-alert.success { background: var(--accent-2); color: #06433a; border: 1px solid rgba(31, 191, 154, .4); }
.form-alert.error { background: #fff1f1; color: #8a1f1f; border: 1px solid rgba(180, 40, 40, .25); }

/* Legal pages */
.detail-card.legal h2 { font-size: 1.25rem; margin: 1.7rem 0 .5rem; letter-spacing: -.01em; }
.detail-card.legal h2:first-child { margin-top: 0; }
.detail-card.legal p { color: #2a3a4d; font-size: 1rem; }
.detail-card.legal a { color: var(--brand); font-weight: 700; word-break: break-word; }
.legal-updated { color: var(--muted); }

/* Footer additions */
.footer-org { margin-top: 1rem !important; color: rgba(255, 255, 255, .82) !important; font-size: .85rem; }
.footer-trademark {
  max-width: var(--max);
  margin: 1.6rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-trademark p { color: rgba(255, 255, 255, .46); font-size: .72rem; line-height: 1.65; margin: 0; }

/* The template's "v2" block re-declares some two-column grids AFTER the
   original breakpoints, so they never collapse. Re-collapse them here (this
   rule is last in the cascade and therefore wins). */
@media (max-width: 940px) {
  .hero, .trust-band, .split-section, .image-copy, .platform-section,
  .feature-split, .subhero-grid, .detail-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual { order: -1; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lang-switch { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .brand-divider { display: none; }
}
