:root {
  --navy: #081832;
  --navy-2: #0d2144;
  --ink: #10213a;
  --muted: #5e6c80;
  --line: #dbe6ee;
  --paper: #f7fbfd;
  --soft: #edf8fb;
  --cyan: #33d8e9;
  --cyan-2: #13aeca;
  --teal: #33d8e9;
  --teal-dark: #0c91a3;
  --silver: #aeb9cf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 24, 50, .14);
  --font-heading-ar: Arial, Tahoma, "Segoe UI", sans-serif;
  --font-body-ar: Arial, Tahoma, "Segoe UI", sans-serif;
  --font-body-en: Arial, "Segoe UI", Tahoma, sans-serif;
  --font-mono: Arial, Tahoma, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body-ar);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

[dir="ltr"] body {
  font-family: var(--font-body-en);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
.brand strong,
.section-heading h2,
.hero h1,
.page-hero h1,
.brochure-page h2,
.brochure-page h3 {
  font-family: var(--font-heading-ar);
  font-weight: 600;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] .brand strong,
[dir="ltr"] .section-heading h2,
[dir="ltr"] .hero h1,
[dir="ltr"] .page-hero h1,
[dir="ltr"] .brochure-page h2,
[dir="ltr"] .brochure-page h3 {
  font-family: var(--font-body-en);
  font-weight: 800;
}

button,
.button,
.header-cta,
.login-button,
.language-link,
.brochure-cta,
.nav a {
  font-family: var(--font-body-ar);
  font-weight: 500;
}

[dir="ltr"] button,
[dir="ltr"] .button,
[dir="ltr"] .header-cta,
[dir="ltr"] .login-button,
[dir="ltr"] .language-link,
[dir="ltr"] .brochure-cta,
[dir="ltr"] .nav a {
  font-family: var(--font-body-en);
}

code,
kbd,
pre,
.price,
.hero-stats strong,
.trust-strip strong,
.brochure-page-number,
.dashboard-shot strong,
.service-visual strong,
.plan-calculator output {
  font-family: var(--font-mono);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 24, 50, .9);
  border: 1px solid rgba(51, 216, 233, .26);
  box-shadow: 0 18px 44px rgba(5, 15, 31, .24);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.billing-toggle,
.footer,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(51, 216, 233, .16));
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.25;
  direction: ltr;
  text-align: left;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-text small {
  color: var(--silver);
  font-size: 12px;
  white-space: nowrap;
}

.nav {
  gap: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.language-link:hover {
  color: var(--cyan);
}

.language-switch {
  gap: 10px;
}

.language-link {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 800;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(51, 216, 233, .42);
  background: rgba(51, 216, 233, .08);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.login-button:hover {
  color: var(--navy);
  background: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 0 14px 30px rgba(51, 216, 233, .22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.button.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero,
.sector-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero {
  min-height: 760px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 50, .2), rgba(8, 24, 50, .78) 52%, rgba(8, 24, 50, .96)),
    linear-gradient(180deg, rgba(8, 24, 50, .28), rgba(8, 24, 50, .46));
}

[dir="ltr"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(8, 24, 50, .2), rgba(8, 24, 50, .78) 52%, rgba(8, 24, 50, .96)),
    linear-gradient(180deg, rgba(8, 24, 50, .28), rgba(8, 24, 50, .46));
}

.hero-content,
.sector-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  padding-top: 92px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(51, 216, 233, .28);
}

.hero-brand img {
  width: 132px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(51, 216, 233, .18));
}

.hero-brand span {
  display: grid;
  gap: 2px;
}

.hero-brand strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-brand small {
  color: var(--silver);
  font-size: 15px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  gap: 16px;
  flex-wrap: wrap;
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(51, 216, 233, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-stats dt {
  color: var(--cyan);
  font-size: 30px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.platform-grid,
.solution-grid,
.pricing-grid,
.feature-grid,
.workflow-grid,
.module-grid {
  display: grid;
  gap: 18px;
}

.platform-grid {
  grid-template-columns: repeat(3, 1fr);
}

.platform-grid article,
.solution-card,
.price-card,
.feature-card,
.workflow-card,
.module-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.platform-grid article,
.solution-card,
.price-card,
.feature-card,
.workflow-card,
.module-card {
  padding: 24px;
}

.icon,
.solution-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid rgba(51, 216, 233, .22);
  font-weight: 800;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.solution-grid {
  grid-template-columns: repeat(4, 1fr);
}

.solution-card {
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.solution-card:hover {
  border-color: rgba(19, 174, 202, .46);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.solution-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  color: var(--cyan-2);
  font-size: 16px;
}

.solution-card p,
.platform-grid p,
.price-card p,
.feature-card p,
.workflow-card p,
.module-card p,
.contact-copy p {
  color: var(--muted);
}

.solution-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.solution-link + .solution-link {
  margin-inline-start: 8px;
}

.demo-link {
  color: var(--white);
  background: var(--navy);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-inline-start: 18px;
}

li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .78em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan-2);
}

.pricing {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #effbfe, #f7fbfd);
}

.billing-toggle {
  width: fit-content;
  gap: 4px;
  padding: 5px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.toggle {
  min-width: 92px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.toggle.active {
  color: var(--white);
  background: var(--navy);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(19, 174, 202, .42);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--navy) !important;
  background: rgba(51, 216, 233, .18);
  font-size: 13px;
  font-weight: 800;
}

.price {
  margin: 24px 0;
}

.price span {
  color: var(--navy);
  font-size: 48px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline div {
  min-height: 140px;
  padding: 26px;
  border-inline-start: 1px solid var(--line);
}

.timeline div:first-child {
  border-inline-start: 0;
}

.timeline strong,
.feature-card strong,
.workflow-card strong,
.module-card strong {
  display: block;
  color: var(--cyan-2);
  font-weight: 800;
}

.timeline strong {
  font-size: 28px;
}

.timeline span {
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 42px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.sector-hero {
  min-height: 540px;
}

.services-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.sector-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 50, .12), rgba(8, 24, 50, .78) 52%, rgba(8, 24, 50, .96)),
    url("assets/hero-saas.png") center/cover;
}

[dir="ltr"] .sector-hero::before {
  background:
    linear-gradient(270deg, rgba(8, 24, 50, .12), rgba(8, 24, 50, .78) 52%, rgba(8, 24, 50, .96)),
    url("assets/hero-saas.png") center/cover;
}

.sector-hero-content {
  padding-top: 92px;
}

.sector-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-grid,
.module-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-overview,
.service-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.service-overview {
  grid-template-columns: repeat(3, 1fr);
}

.service-overview article,
.service-card,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.service-overview article,
.service-card,
.package-grid article {
  padding: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 260px;
}

.service-card-featured {
  border-color: rgba(19, 174, 202, .42);
  background:
    linear-gradient(180deg, rgba(239, 251, 254, .85), var(--white));
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--cyan-2);
  background: var(--soft);
  border: 1px solid rgba(51, 216, 233, .22);
  font-weight: 800;
}

.service-card p,
.service-overview p,
.package-grid p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-packages {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f7fbfd, #effbfe);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
}

.sector-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.sector-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.demo-page {
  background: #eef6f9;
}

.demo-hero {
  min-height: 420px;
}

.demo-hero::before {
  opacity: .98;
}

.demo-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}

.demo-sidebar,
.demo-panel,
.demo-metric,
.demo-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.demo-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.demo-tab {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.demo-tab.active {
  color: var(--white);
  background: var(--navy);
}

.demo-content {
  display: grid;
  gap: 18px;
}

.demo-panel {
  display: none;
  padding: 24px;
}

.demo-panel.active {
  display: block;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.demo-metric {
  padding: 18px;
}

.demo-metric strong {
  display: block;
  color: var(--cyan-2);
  font-size: 28px;
  line-height: 1.2;
}

.demo-metric span {
  color: var(--muted);
  font-weight: 800;
}

.demo-table-wrap {
  overflow: hidden;
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
}

.demo-table th,
.demo-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: inherit;
}

.demo-table th {
  color: var(--muted);
  background: #f5fbfd;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #075f4c;
  background: #dff8ef;
  font-weight: 800;
}

.status-pill.warning {
  color: #7a5100;
  background: #fff2d6;
}

.demo-note {
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--navy);
  background: #dff8fb;
  border: 1px solid rgba(19, 174, 202, .22);
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100% - 1180px) / 2));
  color: var(--silver);
  background: var(--navy);
  border-top: 1px solid rgba(51, 216, 233, .18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.footer-brand img {
  width: 44px;
  height: 28px;
  object-fit: contain;
}

.powered-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: -8px 0 26px;
  padding: 0 12px;
  border: 1px solid rgba(51, 216, 233, .28);
  border-radius: 8px;
  color: rgba(255, 255, 255, .82);
  background: rgba(8, 24, 50, .42);
  font-weight: 800;
}

.trust-stats {
  max-width: 920px;
}

.trust-strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px max(20px, calc((100% - 1180px) / 2));
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip span,
.integration-grid span,
.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(51, 216, 233, .24);
  background: var(--soft);
  font-weight: 800;
}

.journey-steps,
.why-grid,
.compact-products,
.ai-layout,
.faq-grid,
.logo-row {
  display: grid;
  gap: 18px;
}

.journey-steps {
  grid-template-columns: repeat(3, 1fr);
}

.journey-steps article,
.why-grid article,
.compact-products article,
.ai-card,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.journey-steps strong,
.why-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(51, 216, 233, .16);
  border: 1px solid rgba(51, 216, 233, .32);
  font-weight: 800;
}

.journey-steps p,
.why-grid p,
.compact-products p,
.ai-card p,
.faq-grid p,
.product-copy p,
.video-card p {
  color: var(--muted);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-showcase {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f7fbfd, #edf8fb);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 30px;
  border: 1px solid rgba(19, 174, 202, .28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-panel.alt {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.dashboard-shot,
.service-visual,
.video-placeholder {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(51, 216, 233, .36), transparent 30%),
    linear-gradient(145deg, #0b1c39, #14325d);
  border: 1px solid rgba(51, 216, 233, .32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.dashboard-shot span,
.service-visual span,
.video-placeholder span {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-shot strong,
.service-visual strong {
  font-size: 56px;
  line-height: 1;
}

.dashboard-shot small,
.service-visual small,
.video-placeholder strong {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.bars {
  display: flex;
  align-items: end;
  gap: 10px;
  width: min(260px, 100%);
  height: 96px;
  margin: 12px 0;
}

.bars i {
  display: block;
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), #1784d8);
}

.bars i:nth-child(1) { height: 48%; }
.bars i:nth-child(2) { height: 72%; }
.bars i:nth-child(3) { height: 58%; }
.bars i:nth-child(4) { height: 88%; }

.mini-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  margin: 12px 0;
}

.mini-table b {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, .86);
}

.compact-products {
  grid-template-columns: repeat(4, 1fr);
}

.ai-suite {
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 20% 20%, rgba(51, 216, 233, .18), transparent 28%),
    linear-gradient(180deg, var(--navy), #0e294f);
}

.ai-suite .section-heading h2,
.ai-suite .ai-card h3 {
  color: var(--white);
}

.ai-suite .section-heading p,
.ai-suite .eyebrow {
  color: rgba(255, 255, 255, .84);
}

.ai-layout {
  grid-template-columns: 1.4fr repeat(2, 1fr);
}

.ai-card {
  color: var(--white);
  min-height: 210px;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(51, 216, 233, .34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.ai-suite .ai-card p {
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.95;
}

.ai-card.main {
  grid-row: span 2;
  display: grid;
  align-content: center;
  min-height: 438px;
  background:
    radial-gradient(circle at 80% 22%, rgba(51, 216, 233, .22), transparent 30%),
    rgba(255, 255, 255, .12);
}

.video-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-placeholder {
  min-height: 220px;
  justify-items: center;
  text-align: center;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table .row {
  display: grid;
  grid-template-columns: .9fr 1.15fr 1.15fr;
  border-bottom: 1px solid var(--line);
}

.comparison-table .row:last-child {
  border-bottom: 0;
}

.comparison-table span {
  padding: 16px;
  border-inline-start: 1px solid var(--line);
}

.comparison-table span:first-child {
  border-inline-start: 0;
  font-weight: 800;
}

.comparison-table .head {
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.integrations {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: #f0f8fb;
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-calculator {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(160px, .7fr)) minmax(220px, .9fr);
  gap: 16px;
  align-items: end;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(51, 216, 233, .28);
  border-radius: 8px;
  background: var(--white);
}

.plan-calculator h3 {
  margin-bottom: 0;
}

.plan-calculator output {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(51, 216, 233, .16);
  font-weight: 800;
}

.timeline-five {
  grid-template-columns: repeat(5, 1fr);
}

.logo-row {
  grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.qualified-form {
  grid-template-columns: repeat(2, 1fr);
}

.full-field {
  grid-column: 1 / -1;
}

.service-story {
  background: var(--paper);
}

.story-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.story-flow span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(51, 216, 233, .28);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
  text-align: center;
  font-weight: 800;
}

.service-detail-list {
  display: grid;
  gap: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
}

.service-visual {
  min-height: 250px;
}

.ai-visual {
  background: linear-gradient(145deg, #291743, #159fbd);
}

.saas-visual {
  background: linear-gradient(145deg, #0b1c39, #0fa8c2);
}

.integration-visual {
  background: linear-gradient(145deg, #12284f, #5f57a2);
}

.mobile-visual {
  background: linear-gradient(145deg, #10213a, #11b28c);
}

.web-visual {
  background: linear-gradient(145deg, #0d2144, #1784d8);
}

.cto-visual {
  background: linear-gradient(145deg, #0b1c39, #8c5fb7);
}

.support-visual {
  background: linear-gradient(145deg, #10213a, #6d7b8f);
}

.nav {
  flex: 1;
  justify-content: center;
  gap: 13px;
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero .hero-content {
  padding-top: 118px;
  padding-bottom: 76px;
}

.page-hero h1 {
  max-width: 880px;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.info-card,
.industry-card,
.system-card,
.service-large-card,
.resource-card,
.related-card,
.placeholder-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 24, 50, .07);
}

.info-card,
.industry-card,
.system-card,
.service-large-card,
.resource-card,
.placeholder-box {
  padding: 24px;
}

.solution-card-large {
  border-color: rgba(51, 216, 233, .32);
}

.benefit-grid,
.industry-grid,
.system-grid,
.service-large-grid,
.resource-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

.system-grid,
.service-large-grid {
  grid-template-columns: repeat(2, 1fr);
}

.resource-grid,
.related-grid {
  grid-template-columns: repeat(3, 1fr);
}

.seo-keyword-section {
  padding-top: 56px;
}

.seo-cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.seo-cluster-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 169, 190, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(10, 36, 64, 0.08);
}

.seo-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-keyword-chips li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 179, 205, 0.1);
  color: #0b5c74;
  font-size: 14px;
  font-weight: 700;
}

.seo-article-hero {
  min-height: 560px;
}

.seo-article-section {
  padding-top: 72px;
}

.seo-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-cluster-card.accent {
  border-color: rgba(11, 179, 205, 0.36);
  background: linear-gradient(145deg, rgba(11, 179, 205, 0.14), rgba(255, 255, 255, 0.96));
}

.seo-cluster-card.link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-cluster-card.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 179, 205, 0.45);
  box-shadow: 0 18px 42px rgba(10, 36, 64, 0.12);
}

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

.seo-process span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 18px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 16px 34px rgba(10, 36, 64, 0.14);
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-faq-grid article {
  padding: 24px;
  border: 1px solid rgba(10, 36, 64, 0.12);
  border-radius: 20px;
  background: var(--white);
}

.seo-faq-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.seo-article-links {
  padding-top: 40px;
}

.industry-card p,
.system-card p,
.service-large-card p,
.resource-card p,
.related-card span,
.placeholder-box p,
.info-card p {
  color: var(--muted);
}

.system-card,
.service-large-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.system-card ul,
.service-large-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list.single {
  grid-template-columns: 1fr;
}

.screenshot-placeholder {
  min-height: 168px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(circle at 25% 20%, rgba(51, 216, 233, .24), transparent 32%),
    linear-gradient(145deg, #0b1c39, #17355f);
  border: 1px solid rgba(51, 216, 233, .28);
  text-align: center;
  font-weight: 800;
}

.solution-visual,
.service-snapshot {
  min-height: 168px;
  overflow: hidden;
  border: 1px solid rgba(51, 216, 233, .3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(51, 216, 233, .3), transparent 30%),
    linear-gradient(145deg, #081a34, #17355f);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.solution-visual {
  display: grid;
  gap: 14px;
  align-content: space-between;
  padding: 18px;
}

.visual-top,
.visual-kpis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.visual-top span {
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.visual-top strong,
.visual-kpis b {
  font-family: var(--font-mono);
  color: var(--cyan);
}

.visual-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-kpis article {
  display: grid;
  gap: 4px;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.visual-kpis span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.visual-bars {
  display: grid;
  gap: 8px;
}

.visual-bars i {
  display: block;
  width: var(--w);
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), #4f8cff);
}

.visual-map,
.visual-people,
.visual-route {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visual-map span,
.visual-people span,
.visual-route span {
  display: block;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(51, 216, 233, .86), rgba(79, 140, 255, .82));
}

.visual-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.visual-map span {
  min-height: 24px;
}

.visual-people span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.visual-route span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.visual-route i {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .36);
}

.service-snapshot {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}

.service-snapshot span {
  width: max-content;
  min-width: 54px;
  padding: 9px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), #4f8cff);
  color: var(--navy);
  font-family: var(--font-mono);
  font-weight: 900;
}

.service-snapshot strong {
  color: #fff;
  font-size: 24px;
}

.service-snapshot p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(51, 216, 233, .26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(239, 251, 254, .84), #fff);
  box-shadow: 0 12px 34px rgba(8, 24, 50, .06);
}

.trust-grid strong {
  font-family: var(--font-mono);
  color: var(--teal-dark);
  font-size: 28px;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.related-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 174, 202, .46);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 24, 50, .05);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.proof-placeholder {
  padding-top: 42px;
}

.placeholder-box {
  background:
    linear-gradient(180deg, rgba(239, 251, 254, .72), var(--white));
  border-color: rgba(51, 216, 233, .32);
}

.page-integrations {
  display: flex;
  flex-wrap: wrap;
}

.book-demo {
  padding-top: 56px;
}

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay,
  [dir="ltr"] .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 24, 50, .42), rgba(8, 24, 50, .96));
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .platform-grid,
  .pricing-grid,
  .contact,
  .feature-grid,
  .workflow-grid,
  .module-grid,
  .service-overview,
  .service-grid,
  .package-grid,
  .sector-cta,
  .demo-shell,
  .demo-metrics,
  .journey-steps,
  .why-grid,
  .product-panel,
  .product-panel.alt,
  .ai-layout,
  .video-card,
  .plan-calculator,
  .timeline-five,
  .service-detail,
  .service-detail:nth-child(even),
  .split-section,
  .benefit-grid,
  .industry-grid,
  .system-grid,
  .service-large-grid,
  .resource-grid,
  .related-grid,
  .seo-cluster-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .visual-kpis {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .timeline,
  .compact-products,
  .faq-grid,
  .story-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline div {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-shot,
  .service-visual {
    min-height: 220px;
  }

  .page-hero {
    min-height: 620px;
  }

  .seo-article-grid,
  .seo-faq-grid,
  .seo-process {
    grid-template-columns: 1fr;
  }

  .qualified-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 34px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    display: none;
  }

  .hero-content,
  .sector-hero-content,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero-brand {
    gap: 12px;
  }

  .hero-brand img {
    width: 90px;
    height: 58px;
  }

  .hero-brand strong {
    font-size: 18px;
  }

  .hero-brand small {
    font-size: 12px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy,
  .sector-hero p {
    font-size: 17px;
  }

  .solution-grid,
  .timeline,
  .compact-products,
  .faq-grid,
  .story-flow {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .comparison-table .row {
    grid-template-columns: 1fr;
  }

  .comparison-table span {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-table span:first-child {
    border-top: 0;
  }

  .dashboard-shot strong,
  .service-visual strong {
    font-size: 38px;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Corporate brochure */
.brochure-body {
  background: #dfe8ef;
}

html[dir="rtl"] .brochure-body {
  text-align: right;
}

html[dir="rtl"] .brochure-page {
  direction: rtl;
}

html[dir="rtl"] .brochure-kicker {
  text-transform: none;
}

.brochure-site-header {
  position: sticky;
}

.brochure-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 70px;
}

.brochure-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.brochure-toolbar h1 {
  margin: 4px 0 8px;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--ink);
}

.brochure-toolbar p {
  margin: 0;
  color: var(--muted);
}

.brochure-page {
  position: relative;
  min-height: 1120px;
  background: #fff;
  border: 1px solid rgba(21, 166, 187, 0.22);
  border-radius: 8px;
  margin: 0 auto 24px;
  padding: 74px 68px 84px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(5, 21, 48, 0.11);
}

.brochure-page::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), #0a2a54);
}

.brochure-page h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  color: var(--ink);
  letter-spacing: 0;
}

.brochure-page h3 {
  margin: 0 0 18px;
  font-size: 25px;
  color: var(--muted);
}

.brochure-kicker {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brochure-lead,
.brochure-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.brochure-copy {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.cover-page {
  display: flex;
  min-height: 1120px;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(34, 211, 230, 0.18), transparent 45%),
    var(--navy);
  color: #fff;
}

.cover-page::before {
  display: none;
}

.cover-page h2 {
  color: #fff;
  font-size: clamp(48px, 7vw, 84px);
  margin-bottom: 20px;
}

.cover-page h3 {
  color: #d7e6f2;
  max-width: 720px;
  font-size: 34px;
}

.cover-page p:not(.brochure-kicker) {
  color: #bfd4e2;
  max-width: 650px;
  font-size: 23px;
  line-height: 1.5;
}

.brochure-cover-mark img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 44px;
}

.brochure-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding: 15px 24px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.brochure-grid article,
.brochure-timeline article {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7fbfd);
  padding: 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.brochure-grid.compact article {
  min-height: 82px;
}

.brochure-grid span,
.brochure-timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-inline-end: 12px;
  background: rgba(34, 211, 230, 0.16);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.brochure-dashboard {
  display: grid;
  min-height: 250px;
  align-content: center;
  gap: 18px;
  margin: 28px 0;
  padding: 26px;
  border: 1px solid rgba(21, 166, 187, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 211, 230, .28), transparent 28%),
    linear-gradient(135deg, #0b1c39, #15345f);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.brochure-dashboard strong {
  display: block;
  font-size: 30px;
  line-height: 1.25;
}

.brochure-dashboard span {
  color: var(--cyan);
  font-weight: 900;
}

.brochure-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brochure-dashboard-grid b {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(51, 216, 233, .22);
  color: #fff;
  font-size: 19px;
}

.brochure-dashboard-grid small {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.brochure-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.brochure-feature-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.brochure-timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.brochure-timeline article {
  min-height: auto;
}

.brochure-contact-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.brochure-contact-ctas a {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.brochure-contact-ctas a:first-child {
  background: var(--teal);
  color: var(--navy);
}

.brochure-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #f7fbfd;
}

.brochure-contact-grid span {
  min-height: 56px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.brochure-contact-grid a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-email-line {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-email-line a {
  color: var(--teal-dark);
  font-family: var(--font-mono);
  text-decoration: none;
}

.contact-email-line a:hover {
  text-decoration: underline;
}

.brochure-contact-grid .qr-box {
  grid-row: span 2;
  display: grid;
  min-height: 138px;
  place-items: center;
  border: 1px dashed var(--teal-dark);
  color: var(--teal-dark);
  gap: 8px;
}

.brochure-contact-grid .qr-box img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.brochure-contact-grid .qr-box small {
  color: var(--muted);
  font-size: 13px;
}

.brochure-page-number {
  position: absolute;
  inset-inline-end: 34px;
  bottom: 26px;
  color: var(--muted);
  direction: ltr;
  font-size: 14px;
  font-weight: 800;
  unicode-bidi: isolate;
}

@media (max-width: 820px) {
  .brochure-toolbar,
  .brochure-grid,
  .brochure-feature-list,
  .brochure-contact-grid {
    grid-template-columns: 1fr;
  }

  .brochure-toolbar {
    display: grid;
  }

  .brochure-page {
    min-height: auto;
    padding: 48px 28px 72px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  body.brochure-body {
    background: #fff;
  }

  .brochure-site-header,
  .brochure-toolbar {
    display: none;
  }

  .brochure-wrap {
    max-width: none;
    padding: 0;
  }

  .brochure-page {
    width: 210mm;
    height: 297mm;
    min-height: 297mm;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 54px 46px 62px;
    box-shadow: none;
    break-after: page;
    page-break-after: always;
  }

  .brochure-page h2 {
    font-size: 42px;
  }

  .brochure-lead,
  .brochure-copy p {
    font-size: 18px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .brochure-grid article,
  .brochure-timeline article {
    min-height: 72px;
    padding: 15px;
    font-size: 16px;
  }

  .brochure-dashboard {
    min-height: 170px;
  }

  .brochure-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brochure-feature-list span {
    padding: 10px 12px;
    font-size: 15px;
  }

  .brochure-contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}


.visual-healthcare {
  background: linear-gradient(135deg, rgba(19, 198, 214, .18), rgba(17, 34, 64, .96)), #102a43;
}
.workflow-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.workflow-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(20, 166, 187, .25);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}
