/* ==========================================================================
   Union Digital Technologies — udt.css
   Hand-written CSS, no framework. Optimised for CloudFront caching.
   ========================================================================== */

:root {
  --udt-primary: #0B5394;
  --udt-primary-700: #084075;
  --udt-primary-50: #E8F0FA;
  --udt-accent: #C8102E;
  --udt-emerald: #0F8A6A;
  --udt-sand: #F4EFE6;
  --udt-ink: #0E1726;
  --udt-mute: #5B6B7B;
  --udt-line: #E5E9EE;
  --udt-bg: #FFFFFF;
  --udt-bg-soft: #FAFBFD;
  --udt-radius: 14px;
  --udt-radius-sm: 8px;
  --udt-shadow-sm: 0 1px 2px rgba(14, 23, 38, .06);
  --udt-shadow: 0 8px 24px rgba(14, 23, 38, .08);
  --udt-shadow-lg: 0 20px 50px rgba(11, 83, 148, .15);
  --udt-container: 1200px;
  --udt-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --udt-font-display: "Plus Jakarta Sans", var(--udt-font-sans);
  --udt-font-ar: "Tajawal", "IBM Plex Sans Arabic", var(--udt-font-sans);
}

/* Reset --------------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--udt-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--udt-ink);
  background: var(--udt-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--udt-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--udt-primary-700); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* Typography ---------------------------------------------------------------*/
h1, h2, h3, h4 {
  font-family: var(--udt-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--udt-ink);
}
h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1rem + .6vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--udt-mute); }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--udt-mute); }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--udt-primary);
  background: var(--udt-primary-50);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Layout -------------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--udt-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0; }
.section-tight { padding: clamp(2rem, 1rem + 3vw, 3.5rem) 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head p { margin-top: .75rem; }

/* Buttons ------------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--udt-radius-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn-primary { background: var(--udt-primary); color: #fff; box-shadow: var(--udt-shadow-sm); }
.btn-primary:hover { background: var(--udt-primary-700); color: #fff; transform: translateY(-1px); box-shadow: var(--udt-shadow); }
.btn-ghost { background: transparent; color: var(--udt-ink); border-color: var(--udt-line); }
.btn-ghost:hover { border-color: var(--udt-primary); color: var(--udt-primary); }
.btn-light { background: #fff; color: var(--udt-primary); }
.btn-light:hover { background: var(--udt-primary-50); color: var(--udt-primary-700); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* Header / Nav -------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--udt-line);
}
.utility-bar {
  background: var(--udt-ink);
  color: #cdd6e0;
  font-size: .82rem;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a { color: #fff; }
.utility-bar a:hover { color: var(--udt-primary-50); }
.utility-bar .ub-left, .utility-bar .ub-right { display: flex; gap: 1.25rem; align-items: center; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--udt-font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--udt-ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--udt-ink); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--udt-primary) 0%, #1976D2 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--udt-shadow-sm);
}
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 300px;
  display: block;
}
@media (max-width: 480px) {
  .brand-logo { height: 48px; max-width: 220px; }
}
.site-footer .brand-logo {
  height: 56px;
  max-width: 260px;
  filter: brightness(0) invert(1);
}
.brand-text small {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  color: var(--udt-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--udt-ink);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--udt-primary); }
.nav-links a.is-active { color: var(--udt-primary); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.4rem;
  height: 2px;
  background: var(--udt-primary);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--udt-line);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-cta .btn-icon { display: inline-flex; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--udt-line);
  background: #fff;
  padding: 1rem 0 1.25rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; display: grid; gap: .25rem; }
.mobile-menu a {
  display: block;
  padding: .75rem 1.25rem;
  border-radius: var(--udt-radius-sm);
  color: var(--udt-ink);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--udt-primary-50); color: var(--udt-primary); }
.mobile-menu .btn { margin: .75rem 1.25rem 0; display: block; text-align: center; }

/* Hero ---------------------------------------------------------------------*/
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(11, 83, 148, .12), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(15, 138, 106, .10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--udt-bg-soft) 100%);
  overflow: hidden;
  padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0 clamp(3rem, 2rem + 4vw, 5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--udt-primary) 0%, var(--udt-emerald) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { margin-bottom: 2rem; max-width: 56ch; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--udt-mute); font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--udt-emerald); }

.hero-art {
  position: relative;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--udt-line);
  box-shadow: var(--udt-shadow-lg);
  padding: 1.5rem;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}
.hero-invoice {
  display: grid;
  gap: .9rem;
}
.hi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: .75rem;
  border-bottom: 1px dashed var(--udt-line);
}
.hi-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hi-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--udt-mute); }
.hi-value { font-weight: 600; color: var(--udt-ink); font-size: .95rem; }
.hi-amount { font-size: 1.6rem; font-weight: 800; color: var(--udt-primary); }
.hi-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(15, 138, 106, .12); color: var(--udt-emerald);
  padding: .25rem .65rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
}
.hi-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--udt-emerald);
  box-shadow: 0 0 0 4px rgba(15, 138, 106, .15);
}
.hi-qr {
  width: 70px; height: 70px;
  background:
    linear-gradient(45deg, var(--udt-ink) 25%, transparent 25%) 0 0,
    linear-gradient(-45deg, var(--udt-ink) 25%, transparent 25%) 0 0,
    linear-gradient(45deg, transparent 75%, var(--udt-ink) 75%) 0 0,
    linear-gradient(-45deg, transparent 75%, var(--udt-ink) 75%) 0 0;
  background-size: 14px 14px;
  background-color: #fff;
  border: 1px solid var(--udt-line);
  border-radius: 8px;
}

/* Trust strip --------------------------------------------------------------*/
.trust-strip {
  background: var(--udt-bg-soft);
  border-top: 1px solid var(--udt-line);
  border-bottom: 1px solid var(--udt-line);
  padding: 1.25rem 0;
}
.trust-strip .container {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1rem 2rem;
  color: var(--udt-mute);
  font-size: .88rem;
}
.trust-strip strong { color: var(--udt-ink); font-weight: 600; }

/* Cards --------------------------------------------------------------------*/
.card {
  background: #fff;
  border: 1px solid var(--udt-line);
  border-radius: var(--udt-radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--udt-shadow); border-color: transparent; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--udt-primary-50);
  color: var(--udt-primary);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; }

.card-num {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--udt-bg-soft) 100%);
}
.card-num .step {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--udt-font-display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--udt-primary-50);
  line-height: 1;
}

/* Feature row (alternating) -----------------------------------------------*/
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 4rem; }
.feature-row.alt > div:first-child { order: 2; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-row.alt > div:first-child { order: 0; }
}
.feature-row h2 { margin-bottom: 1rem; }

/* Generic checklist (used in feature rows AND inside cards on compliance page) */
ul.checks { list-style: none; margin-top: 1.25rem; padding: 0; display: grid; gap: .65rem; }
ul.checks li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .96rem; color: var(--udt-ink);
  line-height: 1.45;
}
ul.checks li > svg,
ul.checks li > svg:first-child {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  max-width: 18px; max-height: 18px;
  color: var(--udt-emerald);
  margin-top: 3px;
}

.illustration {
  background: linear-gradient(135deg, var(--udt-primary-50) 0%, #fff 100%);
  border: 1px solid var(--udt-line);
  border-radius: 18px;
  padding: 2.5rem;
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.illustration svg { width: min(100%, 380px); height: auto; }

/* CTA banner ---------------------------------------------------------------*/
.cta-banner {
  background: linear-gradient(120deg, var(--udt-primary) 0%, var(--udt-primary-700) 100%);
  color: #fff;
  border-radius: 22px;
  padding: clamp(2.5rem, 2rem + 3vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: -50% -20% auto auto;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0 auto 1.5rem; max-width: 60ch; }
.cta-banner .btn-light { font-weight: 700; }

/* Footer -------------------------------------------------------------------*/
.site-footer {
  background: var(--udt-ink);
  color: #c4ccd6;
  padding: 4rem 0 2rem;
  font-size: .92rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer a { color: #c4ccd6; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; display: grid; gap: .65rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand:hover { color: #fff; }
.footer-brand .brand-text small { color: #8c98a7; }
.footer-brand p { color: #8c98a7; font-size: .9rem; max-width: 38ch; }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: #8c98a7;
}
.footer-meta .legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.socials a:hover { background: var(--udt-primary); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* Page hero (inner pages) --------------------------------------------------*/
.page-hero {
  background: linear-gradient(180deg, var(--udt-primary-50) 0%, #fff 100%);
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0 clamp(2.5rem, 2rem + 2vw, 4rem);
  border-bottom: 1px solid var(--udt-line);
}
.page-hero .container { max-width: 820px; text-align: center; }
.page-hero p.lead { margin-top: 1rem; }
.breadcrumbs {
  font-size: .85rem; color: var(--udt-mute);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--udt-mute); }
.breadcrumbs a:hover { color: var(--udt-primary); }
.breadcrumbs span { margin: 0 .5rem; color: var(--udt-line); }

/* Stats --------------------------------------------------------------------*/
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: #fff;
  border: 1px solid var(--udt-line);
  border-radius: var(--udt-radius);
  padding: 2rem;
  box-shadow: var(--udt-shadow-sm);
}
.stat-num {
  font-family: var(--udt-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.5rem);
  color: var(--udt-primary);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .9rem; color: var(--udt-mute); }

/* Pricing ------------------------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--udt-line);
  border-radius: var(--udt-radius);
  padding: 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured { border-color: var(--udt-primary); box-shadow: var(--udt-shadow); }
.price-card.featured::before {
  content: "Most popular";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--udt-primary); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 999px;
}
.price-name { font-weight: 700; font-size: 1.1rem; margin-bottom: .35rem; }
.price-tag { display: flex; align-items: baseline; gap: .35rem; margin: .75rem 0 1.25rem; }
.price-tag .amount { font-family: var(--udt-font-display); font-size: 2.5rem; font-weight: 800; color: var(--udt-ink); line-height: 1; }
.price-tag .unit { color: var(--udt-mute); font-size: .9rem; }
.price-card ul { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.5rem; flex: 1; }
.price-card ul li { display: flex; gap: .5rem; align-items: flex-start; font-size: .92rem; }
.price-card ul li::before {
  content: ""; flex-shrink: 0; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F8A6A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  margin-top: 2px;
}

/* FAQ ----------------------------------------------------------------------*/
.faq { display: grid; gap: .75rem; max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--udt-line);
  border-radius: var(--udt-radius-sm);
  padding: 1.1rem 1.25rem;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--udt-primary); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--udt-ink);
  list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem; line-height: 1;
  color: var(--udt-primary); font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; font-size: .95rem; }

/* Timeline -----------------------------------------------------------------*/
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--udt-line);
  display: grid; gap: 2rem;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute;
  left: -1.65rem; top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--udt-primary);
  box-shadow: 0 0 0 4px var(--udt-primary-50);
}
.timeline-date {
  font-size: .82rem; font-weight: 600;
  color: var(--udt-primary); letter-spacing: .04em;
  margin-bottom: .25rem;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: .35rem; }

/* Forms --------------------------------------------------------------------*/
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .85rem; font-weight: 600; color: var(--udt-ink);
}
.field label .req { color: var(--udt-accent); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--udt-line);
  border-radius: var(--udt-radius-sm);
  padding: .8rem 1rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--udt-primary);
  box-shadow: 0 0 0 3px var(--udt-primary-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-check { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--udt-mute); }
.field-check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--udt-bg-soft);
  border-radius: var(--udt-radius);
  padding: 2rem;
  border: 1px solid var(--udt-line);
  display: grid; gap: 1.5rem; align-content: start;
}
.contact-info h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.info-block { display: flex; gap: 1rem; }
.info-block .ic {
  width: 42px; height: 42px;
  background: var(--udt-primary-50); color: var(--udt-primary);
  border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
}
.info-block .ic svg { width: 20px; height: 20px; }
.info-block p { color: var(--udt-mute); font-size: .92rem; margin: 0; }
.info-block strong { color: var(--udt-ink); font-weight: 600; }

/* Misc ---------------------------------------------------------------------*/
.bg-soft { background: var(--udt-bg-soft); }
.bg-sand { background: var(--udt-sand); }
.text-mute { color: var(--udt-mute); }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* Skip link / accessibility ------------------------------------------------*/
.skip-link {
  position: absolute; left: -9999px;
  background: var(--udt-ink); color: #fff;
  padding: .75rem 1rem; border-radius: 6px;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Form status messages -----------------------------------------------------*/
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--udt-radius-sm);
  font-size: .92rem;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(15, 138, 106, .08);
  color: var(--udt-emerald);
  border: 1px solid rgba(15, 138, 106, .2);
}
.form-status.is-error {
  display: block;
  background: rgba(200, 16, 46, .08);
  color: var(--udt-accent);
  border: 1px solid rgba(200, 16, 46, .2);
}


/* ==========================================================================
   Language toggle + RTL support
   ========================================================================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 64px;
  padding: 0 .9rem;
  border: 1px solid rgba(11,83,148,.25);
  border-radius: 999px;
  background: #fff;
  color: var(--udt-primary);
  font: 600 .85rem/1 var(--udt-font-display, "Plus Jakarta Sans"), system-ui, sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lang-toggle:hover {
  background: var(--udt-primary);
  color: #fff;
  border-color: var(--udt-primary);
}
.mobile-menu .lang-toggle {
  width: 100%;
  height: 44px;
  margin-top: .5rem;
}

/* Arabic typography fallback (Inter doesn't include Arabic glyphs) */
html[lang="ar"] body,
html[dir="rtl"] body {
  font-family: "Tajawal", "Cairo", "Segoe UI", "Tahoma", system-ui, -apple-system, sans-serif;
}
html[lang="ar"] .brand,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6 {
  font-family: "Tajawal", "Cairo", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

/* RTL flips */
html[dir="rtl"] .breadcrumbs span { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] .nav-links a.is-active::after { left: auto; right: 0; }
html[dir="rtl"] .form-grid .req,
html[dir="rtl"] .field-check input { margin-left: 0; margin-right: 0; }
html[dir="rtl"] .ub-left { order: 2; }
html[dir="rtl"] .ub-right { order: 1; }
html[dir="rtl"] .utility-bar .container { flex-direction: row-reverse; }
html[dir="rtl"] .footer-meta { direction: rtl; }
html[dir="rtl"] .nav-cta { flex-direction: row-reverse; }
html[dir="rtl"] svg.arrow,
html[dir="rtl"] .btn svg { transform: scaleX(-1); }

/* Newsletter form (cta-banner) */
#newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 1.25rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
#newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 220px;
  height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: #fff;
  color: #0E1726;
  font: 400 1rem/1 "Inter", system-ui, sans-serif;
  outline: none;
}
#newsletter-form input[type="email"]::placeholder { color: #94a3b8; }
#newsletter-form input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
#newsletter-form .btn { height: 44px; }
#newsletter-form .newsletter-status {
  flex-basis: 100%;
  text-align: center;
  margin: .25rem 0 0;
  min-height: 1.2em;
  font-size: .9rem;
  color: rgba(255,255,255,.92);
}
#newsletter-form .newsletter-status.is-error { color: #FFD9D9; }

/* Technology partner strip (homepage) */
.partner-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--udt-primary-50, #EFF4FB) 100%);
  border: 1px solid var(--udt-line);
  border-radius: 22px;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--udt-shadow-sm);
}
.partner-strip h2 { margin: .35rem 0 .65rem; }
.partner-strip__copy .eyebrow { color: var(--udt-emerald); }
.partner-strip__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.partner-badge {
  background: #fff;
  border: 1px solid var(--udt-line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  box-shadow: 0 1px 2px rgba(14,23,38,.04);
  transition: transform .15s ease, box-shadow .15s ease;
}
.partner-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(11,83,148,.10); }
.partner-badge strong { color: var(--udt-primary); font-size: 1rem; font-weight: 700; }
.partner-badge span { color: var(--udt-mute); font-size: .82rem; }

@media (max-width: 880px) {
  .partner-strip { grid-template-columns: 1fr; padding: 1.75rem 1.5rem; }
  .partner-strip__badges { grid-template-columns: 1fr 1fr; }
}

/* Peppol-Ready badge (inline pill with network icon) */
.peppol-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .85rem;
  border: 1px solid var(--udt-line);
  border-radius: 999px;
  background: #fff;
  color: var(--udt-primary);
  box-shadow: 0 1px 2px rgba(14,23,38,.04);
}
.peppol-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.peppol-badge strong { display: block; font-size: .82rem; font-weight: 700; line-height: 1.1; color: var(--udt-primary); }
.peppol-badge small { display: block; font-size: .7rem; color: var(--udt-mute); letter-spacing: .02em; }

/* Certification badge row */
.cert-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--udt-line);
}
.cert-row__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--udt-mute);
  flex-basis: 100%;
}
.cert-row img {
  height: 56px;
  width: auto;
  display: block;
  filter: grayscale(0);
  transition: transform .15s ease;
}
.cert-row img:hover { transform: translateY(-2px); }
@media (max-width: 540px) {
  .cert-row img { height: 48px; }
}