:root {
  --navy-950: #061a2e;
  --navy-900: #08263f;
  --navy-800: #0b3858;
  --blue-700: #1559d9;
  --blue-600: #2671ee;
  --blue-500: #3795f5;
  --cyan-500: #15b8e8;
  --green-600: #0ead5b;
  --green-500: #20c76a;
  --ink: #0f172a;
  --text: #334155;
  --muted: #6b7a90;
  --line: #dfe9f4;
  --line-soft: #edf3f9;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --surface-blue: #eef6ff;
  --surface-green: #ecfff4;
  --shadow-xs: 0 8px 22px rgba(12, 45, 80, .055);
  --shadow-sm: 0 18px 45px rgba(12, 45, 80, .08);
  --shadow-md: 0 30px 80px rgba(12, 45, 80, .13);
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --radius-xl: 52px;
  --shell: 1220px;
  --header-height: 82px;
  --ease-out: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 8%, rgba(38, 113, 238, .08), transparent 25rem),
    radial-gradient(circle at 5% 35%, rgba(21, 184, 232, .06), transparent 27rem),
    #fff;
  font-family: "Tajawal", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.menu-open::after {
  content: "";
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 89;
  background: rgba(6, 26, 46, .28);
  backdrop-filter: blur(4px);
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, strong, .button, .nav-link, .mobile-link {
  font-family: "Noto Kufi Arabic", "Tajawal", Tahoma, sans-serif;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
::selection { color: #fff; background: var(--blue-600); }

.ui-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
  fill: currentColor;
  color: inherit;
}
.ui-icon path,
.ui-icon circle,
.ui-icon rect,
.ui-icon polygon,
.ui-icon ellipse {
  fill: currentColor;
}

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: -80px;
  right: 20px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--navy-950);
  transition: top .25s ease;
}
.skip-link:focus { top: 16px; }

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}
.ambient-one {
  width: 480px;
  height: 480px;
  top: 2%;
  right: -290px;
  background: radial-gradient(circle, rgba(38, 113, 238, .16), transparent 69%);
}
.ambient-two {
  width: 570px;
  height: 570px;
  top: 48%;
  left: -390px;
  background: radial-gradient(circle, rgba(21, 184, 232, .12), transparent 70%);
  animation-delay: -5s;
}
@keyframes ambient-drift {
  to { transform: translate3d(30px, 24px, 0) scale(1.08); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(223, 233, 244, .76);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 38px rgba(10, 40, 70, .08);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  transition: transform .25s var(--ease-out);
}
.brand:hover { transform: translateY(-2px); }
.brand img { width: 205px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
}
.nav-link {
  position: relative;
  padding: 15px 0;
  color: #34445b;
  font-size: .79rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s ease, transform .25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  transition: width .3s var(--ease-out), right .3s var(--ease-out);
}
.nav-link:hover { color: var(--blue-600); transform: translateY(-1px); }
.nav-link.active { color: var(--blue-600); }
.nav-link.active::after { right: 16%; width: 68%; }
.header-actions { display: flex; align-items: center; justify-content: end; gap: 10px; }
.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 12px;
  border: 1px solid #d7e6f5;
  border-radius: 17px;
  color: var(--navy-900);
  background: linear-gradient(145deg, #f7fbff, #eaf4ff);
  box-shadow: 0 8px 20px rgba(24, 88, 150, .07);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 4.5px auto;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform .3s var(--ease-out), opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Buttons */
.button {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: transform .28s var(--ease-out), box-shadow .28s ease, filter .28s ease;
}
.button::before {
  content: "";
  position: absolute;
  top: -180%;
  left: -55%;
  z-index: -1;
  width: 40%;
  height: 450%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, .24);
  transition: left .7s var(--ease-out);
}
.button:hover { transform: translateY(-3px); filter: saturate(1.08); }
.button:hover::before { left: 125%; }
.button:active { transform: translateY(-1px) scale(.985); }
.button .ui-icon { width: 1.25rem; height: 1.25rem; }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .75rem; border-radius: 14px; }
.button-large { min-height: 57px; padding: 14px 27px; font-size: .88rem; border-radius: 18px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500) 62%, var(--cyan-500));
  box-shadow: 0 16px 32px rgba(38, 113, 238, .22);
}
.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #079b4d, var(--green-500));
  box-shadow: 0 16px 32px rgba(14, 173, 91, .2);
}
.button-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 16px 32px rgba(6, 26, 46, .18);
}
.button-full { width: 100%; }
.icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  flex: 0 0 21px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M16.04 3C8.86 3 3.02 8.82 3.02 16c0 2.29.6 4.53 1.73 6.5L3 29l6.66-1.75A12.95 12.95 0 0 0 16.04 29C23.22 29 29 23.18 29 16S23.22 3 16.04 3Zm0 23.82a10.8 10.8 0 0 1-5.5-1.5l-.39-.23-3.95 1.04 1.05-3.85-.25-.4A10.8 10.8 0 0 1 5.2 16c0-5.97 4.86-10.82 10.84-10.82A10.82 10.82 0 0 1 26.82 16c0 5.97-4.82 10.82-10.78 10.82Zm5.94-8.1c-.32-.16-1.92-.95-2.22-1.06-.3-.11-.51-.16-.73.16-.21.32-.83 1.06-1.02 1.27-.19.22-.38.24-.7.08-1.91-.95-3.17-1.7-4.44-3.86-.34-.59.34-.54.97-1.81.11-.22.05-.4-.03-.57-.08-.16-.73-1.75-1-2.4-.26-.63-.53-.54-.73-.55h-.62c-.22 0-.57.08-.86.4-.3.33-1.13 1.11-1.13 2.7 0 1.6 1.16 3.14 1.32 3.36.16.21 2.28 3.49 5.53 4.89.77.33 1.38.53 1.85.68.78.25 1.49.21 2.05.13.63-.09 1.92-.79 2.19-1.55.27-.76.27-1.41.19-1.55-.08-.13-.3-.21-.62-.37Z'/%3E%3C/svg%3E");
}

/* Routing and reveal */
.page { display: none; animation: page-in .4s var(--ease-out); }
.page.active { display: block; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Shared glow cards */
[data-glow] {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
[data-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--glow-x) var(--glow-y), rgba(55, 149, 245, .13), transparent 43%);
  transition: opacity .35s ease;
}
[data-glow]:hover::before { opacity: 1; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
  padding-top: clamp(62px, 7vw, 94px);
  padding-bottom: clamp(68px, 7vw, 96px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 22px -58px 24px;
  z-index: -2;
  border: 1px solid rgba(223, 233, 244, .55);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.92)),
    linear-gradient(90deg, rgba(38,113,238,.07) 1px, transparent 1px),
    linear-gradient(rgba(38,113,238,.07) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: inset 0 1px rgba(255,255,255,.95);
}
.hero::after {
  content: "";
  position: absolute;
  top: 3%;
  left: 43%;
  z-index: -1;
  width: 210px;
  height: 210px;
  border-radius: 44% 56% 60% 40% / 48% 45% 55% 52%;
  background: linear-gradient(145deg, rgba(38,113,238,.11), rgba(21,184,232,.04));
  animation: morph 9s ease-in-out infinite alternate;
}
@keyframes morph {
  to { transform: rotate(18deg) scale(1.08); border-radius: 59% 41% 39% 61% / 43% 62% 38% 57%; }
}
.hero-copy { min-width: 0; }
.eyebrow, .section-kicker, .page-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: .83rem;
  font-weight: 800;
}
.eyebrow span {
  width: 34px;
  height: 3px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 0 0 5px rgba(38,113,238,.06);
}
.hero h1 {
  max-width: 690px;
  margin: 20px 0 20px;
  color: var(--ink);
  font-size: clamp(2.65rem, 4.55vw, 4.45rem);
  line-height: 1.35;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero h1 em {
  position: relative;
  color: transparent;
  background: linear-gradient(100deg, var(--blue-700), var(--blue-500), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -7px;
  width: 88%;
  height: 8px;
  border-radius: 50%;
  background: rgba(38,113,238,.12);
  filter: blur(5px);
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: #34445b;
  font-size: .86rem;
  font-weight: 700;
}
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.mini-check {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--surface-green);
  box-shadow: 0 5px 14px rgba(14,173,91,.1);
}
.mini-check::after { content: "✓"; font-size: 12px; font-weight: 900; font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.trust-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #d9e5f0;
  font-size: .83rem;
}
.trust-note strong { color: var(--navy-900); font-weight: 800; }
.trust-note span { color: var(--muted); }
.hero-visual { min-width: 0; }
.visual-frame {
  position: relative;
  width: min(100%, 590px);
  margin-inline: auto;
  animation: dashboard-float 6s ease-in-out infinite;
}
.visual-frame::before {
  content: "";
  position: absolute;
  inset: 11% 6% 4%;
  z-index: -1;
  border-radius: 42% 58% 48% 52% / 48% 43% 57% 52%;
  background: linear-gradient(140deg, rgba(38,113,238,.13), rgba(21,184,232,.04));
  filter: blur(2px);
}
.visual-frame > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 42px rgba(15, 40, 70, .12));
}
@keyframes dashboard-float {
  50% { transform: translateY(-9px); }
}
.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 158px;
  padding: 12px 14px;
  border: 1px solid rgba(209, 225, 240, .9);
  border-radius: 19px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  animation: chip-float 4.7s ease-in-out infinite;
}
.floating-chip strong, .floating-chip small { display: block; }
.floating-chip strong { color: var(--ink); font-size: .76rem; font-weight: 800; }
.floating-chip small { color: var(--muted); font-size: .66rem; }
.chip-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 39px;
  border-radius: 13px;
  color: var(--blue-600);
  background: linear-gradient(145deg, #f2f8ff, #e6f2ff);
}
.chip-icon .ui-icon { width: 1.35rem; height: 1.35rem; }
.chip-one { top: 13%; left: -4%; }
.chip-two { right: -1%; bottom: 8%; animation-delay: -2s; }
@keyframes chip-float { 50% { transform: translateY(-7px); } }

/* Proof strip */
.mini-proof {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(248, 251, 255, .8);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px 28px;
  border-left: 1px solid var(--line);
}
.proof-grid > div:first-child { border-right: 1px solid var(--line); }
.proof-grid strong { color: var(--navy-900); font-size: .86rem; font-weight: 800; }
.proof-grid span { color: var(--muted); font-size: .77rem; line-height: 1.6; }

/* Sections */
.section { padding-top: clamp(76px, 8vw, 112px); padding-bottom: clamp(76px, 8vw, 112px); }
.section-soft {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(38,113,238,.08), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
}
.section-soft::before,
.section-soft::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(38,113,238,.08);
  border-radius: 38% 62% 52% 48%;
  pointer-events: none;
}
.section-soft::before { top: -150px; right: -80px; transform: rotate(24deg); }
.section-soft::after { bottom: -180px; left: -70px; transform: rotate(-14deg); }
.section-heading { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 {
  margin: 12px 0 13px;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.45;
  letter-spacing: -.035em;
  font-weight: 800;
}
.section-heading p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: .98rem; }
.section-kicker { justify-content: center; }
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 6px rgba(21,184,232,.09);
}
.center-action { display: flex; justify-content: center; margin-top: 36px; }

/* Problems */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease;
}
.problem-card:hover { transform: translateY(-8px); border-color: #bdd9f6; box-shadow: var(--shadow-sm); }
.line-icon, .service-icon, .industry-icon, .sector-tile > span {
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(145deg, #f3f8ff, #e5f2ff);
  box-shadow: inset 0 0 0 1px rgba(38,113,238,.06), 0 10px 24px rgba(38,113,238,.08);
}
.line-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
}
.line-icon .ui-icon { width: 1.65rem; height: 1.65rem; }
.problem-card h3 { margin: 0 0 9px; color: var(--navy-900); font-size: 1rem; font-weight: 700; }
.problem-card p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.85; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #dbe7f3;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 110px;
  height: 110px;
  border-radius: 100% 0 30px 0;
  background: linear-gradient(135deg, transparent, rgba(38,113,238,.06));
}
.service-card:hover { transform: translateY(-9px); border-color: #bcd8f5; box-shadow: var(--shadow-sm); }
.service-number {
  position: absolute;
  top: 25px;
  left: 27px;
  color: #9db5cc;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: .72rem;
  font-weight: 700;
}
.service-icon { width: 61px; height: 61px; margin-bottom: 24px; border-radius: 20px; }
.service-icon .ui-icon { width: 1.85rem; height: 1.85rem; }
.service-card h3 { margin: 0 0 11px; color: var(--navy-900); font-size: 1.04rem; line-height: 1.65; font-weight: 700; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: .87rem; line-height: 1.86; }
.service-card a { margin-top: auto; color: var(--blue-600); font-size: .81rem; font-weight: 800; }
.service-card a b { display: inline-block; transition: transform .25s ease; }
.service-card:hover a b { transform: translateX(-5px); }

/* Impact */
.impact-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, var(--navy-950), #0b3858 55%, #0f4e76);
}
.impact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(55,149,245,.28), transparent 24rem),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 42px 42px;
}
.impact-grid { position: relative; display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); align-items: stretch; }
.impact-intro { padding: 44px 0 44px 34px; }
.impact-intro > span { color: #86c8ff; font-size: .76rem; font-weight: 700; }
.impact-intro h2 { max-width: 360px; margin: 8px 0 0; font-size: 1.3rem; line-height: 1.75; }
.impact-item {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.11);
  transition: background .3s ease;
}
.impact-item:hover { background: rgba(255,255,255,.045); }
.impact-item strong { color: #72c4ff; font-size: 1.65rem; font-weight: 800; }
.impact-item span { color: rgba(255,255,255,.83); font-size: .82rem; line-height: 1.7; }

/* Sectors */
.sector-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.sector-tile {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: transform .32s var(--ease-out), border-color .32s ease, box-shadow .32s ease;
}
.sector-tile:hover { transform: translateY(-7px) rotate(-.4deg); border-color: #bedaf6; box-shadow: var(--shadow-sm); }
.sector-tile > span { width: 56px; height: 56px; border-radius: 19px; }
.sector-tile .ui-icon { width: 1.65rem; height: 1.65rem; }
.sector-tile strong { color: var(--navy-900); font-size: .76rem; line-height: 1.6; }

/* Process */
.process-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(38,113,238,.08), transparent 22rem),
    #f8fbff;
}
.process-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-line::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #b6d7fb 0 12px, transparent 12px 22px);
}
.process-step { position: relative; padding: 0 11px; text-align: center; }
.process-step > span {
  position: relative;
  z-index: 1;
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 7px solid #f8fbff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 12px 28px rgba(38,113,238,.22);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: .83rem;
  font-weight: 800;
  transition: transform .3s var(--ease-out);
}
.process-step:hover > span { transform: translateY(-5px) scale(1.05); }
.process-step h3 { margin: 0 0 8px; color: var(--navy-900); font-size: .88rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.75; }

/* Partner */
.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 38px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid #d9e8f6;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 15%, rgba(38,113,238,.11), transparent 18rem),
    linear-gradient(145deg, #fff, #f5faff);
  box-shadow: var(--shadow-sm);
}
.partner-card h2 { margin: 12px 0 14px; color: var(--ink); font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.55; }
.partner-card p { margin: 0; color: var(--muted); }
.partner-list { display: grid; gap: 10px; margin-top: 25px; }
.partner-list span { display: flex; align-items: center; gap: 9px; color: #34445b; font-size: .87rem; font-weight: 600; }
.partner-list .ui-icon, .contact-benefits .ui-icon { width: 1.25rem; height: 1.25rem; color: var(--green-600); }
.partner-quote {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 31px;
  border: 1px solid rgba(38,113,238,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-xs);
}
.partner-quote > span { color: var(--blue-500); font-family: Georgia, serif; font-size: 4.4rem; line-height: .7; }
.partner-quote p { color: var(--navy-900); font-size: 1rem; line-height: 2; font-weight: 600; }

/* CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), #167bea 55%, var(--cyan-500));
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -250px;
  left: 4%;
  border: 70px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.final-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.final-cta-inner > div > span { color: rgba(255,255,255,.8); font-size: .82rem; }
.final-cta h2 { max-width: 700px; margin: 8px 0 0; font-size: clamp(1.55rem, 2.7vw, 2.4rem); line-height: 1.65; }
.final-cta .button-whatsapp { flex: 0 0 auto; border: 1px solid rgba(255,255,255,.2); }

/* Internal page hero */
.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  margin-top: 34px;
  padding: 64px clamp(30px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 13% 20%, rgba(21,184,232,.12), transparent 20rem),
    radial-gradient(circle at 92% 80%, rgba(38,113,238,.12), transparent 24rem),
    linear-gradient(145deg, #fff, #f5faff);
  box-shadow: var(--shadow-xs);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -65px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(38,113,238,.12);
  border-radius: 42% 58% 55% 45%;
  transform: rotate(17deg);
}
.page-hero > div:first-child { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { margin: 14px 0 13px; color: var(--ink); font-size: clamp(2.25rem, 4.2vw, 4rem); line-height: 1.45; letter-spacing: -.04em; }
.page-hero p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1rem; }
.page-hero-badge {
  position: relative;
  z-index: 1;
  min-width: 245px;
  padding: 26px;
  border: 1px solid rgba(38,113,238,.14);
  border-radius: 28px;
  color: var(--muted);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  font-size: .86rem;
  line-height: 1.8;
}
.page-hero-badge strong { color: var(--navy-900); font-size: 1rem; }
.badge-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  margin-bottom: 16px;
  color: var(--blue-600);
}

/* Service detail cards */
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card {
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}
.detail-card:hover { transform: translateY(-7px); border-color: #bedaf6; box-shadow: var(--shadow-sm); }
.detail-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  color: var(--blue-600);
  background: var(--surface-blue);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: .78rem;
  font-weight: 800;
}
.detail-card h2 { margin: 0 0 12px; color: var(--navy-900); font-size: 1.22rem; line-height: 1.65; }
.detail-card p { margin: 0 0 19px; color: var(--muted); font-size: .9rem; }
.detail-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.detail-card li { position: relative; padding-right: 23px; color: #44546a; font-size: .85rem; }
.detail-card li::before {
  content: "";
  position: absolute;
  top: .73em;
  right: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 0 0 4px rgba(38,113,238,.08);
}

/* Industry */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.industry-card {
  min-height: 335px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}
.industry-card:hover { transform: translateY(-8px); border-color: #bedaf6; box-shadow: var(--shadow-sm); }
.industry-icon { width: 63px; height: 63px; margin-bottom: 23px; border-radius: 21px; }
.industry-icon .ui-icon { width: 1.9rem; height: 1.9rem; }
.industry-card h2 { margin: 0 0 11px; color: var(--navy-900); font-size: 1.08rem; }
.industry-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag-list span { padding: 7px 11px; border-radius: 999px; color: var(--blue-700); background: var(--surface-blue); font-size: .71rem; font-weight: 700; }

/* Method */
.method-list { display: grid; gap: 18px; }
.method-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  padding: 27px 30px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .32s var(--ease-out), border-color .32s ease, box-shadow .32s ease;
}
.method-item:hover { transform: translateX(-7px); border-color: #bedaf6; box-shadow: var(--shadow-sm); }
.method-num {
  width: 69px;
  height: 69px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 14px 30px rgba(38,113,238,.2);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: .85rem;
  font-weight: 800;
}
.method-item h2 { margin: 0 0 6px; color: var(--navy-900); font-size: 1.07rem; }
.method-item p { margin: 0; color: var(--muted); font-size: .9rem; }

/* About */
.about-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 24px; }
.about-main, .about-side {
  padding: clamp(28px, 4vw, 47px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.about-main h2 { margin: 13px 0 18px; color: var(--ink); font-size: clamp(1.65rem, 2.8vw, 2.4rem); line-height: 1.65; }
.about-main p { color: var(--muted); }
.about-side { color: #fff; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.about-side h3 { margin: 0 0 21px; font-size: 1.1rem; }
.about-side ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.about-side li { position: relative; padding-right: 28px; color: rgba(255,255,255,.8); font-size: .86rem; }
.about-side li::before { content: "✓"; position: absolute; right: 0; color: #68e7a4; font-weight: 900; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  min-height: 230px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .32s var(--ease-out), box-shadow .32s ease;
}
.value-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.value-card > span { color: var(--blue-600); font-family: "Noto Kufi Arabic", sans-serif; font-size: .8rem; font-weight: 800; }
.value-card h3 { margin: 18px 0 8px; color: var(--navy-900); font-size: 1.05rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .87rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr); gap: 28px; align-items: start; }
.contact-copy { padding: 26px 8px; }
.contact-copy h2 { margin: 14px 0 15px; color: var(--ink); font-size: clamp(1.65rem, 2.8vw, 2.45rem); line-height: 1.6; }
.contact-copy > p { color: var(--muted); }
.contact-benefits { display: grid; gap: 12px; margin: 25px 0; }
.contact-benefits span { display: flex; align-items: center; gap: 9px; color: #34445b; font-size: .88rem; font-weight: 600; }
.direct-whatsapp {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 29px;
  padding: 17px;
  border: 1px solid rgba(14,173,91,.2);
  border-radius: 20px;
  background: var(--surface-green);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.direct-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14,173,91,.12); }
.direct-whatsapp .icon { width: 42px; height: 42px; flex-basis: 42px; padding: 9px; border-radius: 14px; background-color: var(--green-600); background-size: 24px; }
.direct-whatsapp strong, .direct-whatsapp small { display: block; }
.direct-whatsapp strong { color: var(--navy-900); font-size: .88rem; }
.direct-whatsapp small { color: var(--muted); direction: ltr; text-align: right; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy-900); font-size: .82rem; font-weight: 700; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d9e5f1;
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: #fbfdff;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-form input, .contact-form select { min-height: 53px; padding: 11px 14px; }
.contact-form textarea { resize: vertical; min-height: 125px; padding: 14px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: #78b4f5; background: #fff; box-shadow: 0 0 0 5px rgba(38,113,238,.09); }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .73rem; text-align: center; }

/* Footer */
.site-footer { color: rgba(255,255,255,.72); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 46px; padding-top: 62px; padding-bottom: 48px; }
.footer-brand img { width: 190px; padding: 8px; border-radius: 15px; background: #fff; }
.footer-brand p { max-width: 350px; margin: 20px 0 0; font-size: .82rem; }
.footer-grid h3 { margin: 0 0 17px; color: #fff; font-size: .86rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a, .footer-grid span { font-size: .78rem; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: #fff; transform: translateX(-3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 25px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 15px 34px rgba(14,173,91,.28);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 20px 42px rgba(14,173,91,.35); }
@keyframes wa-pulse {
  50% { box-shadow: 0 15px 34px rgba(14,173,91,.28), 0 0 0 10px rgba(32,199,106,.08); }
}
.mobile-bottom { display: none; }

/* Responsive: smaller desktop */
@media (max-width: 1180px) {
  :root { --shell: 1040px; }
  .header-inner { grid-template-columns: 190px minmax(0,1fr) auto; gap: 20px; }
  .brand img { width: 184px; }
  .desktop-nav { gap: 18px; }
  .nav-link { font-size: .74rem; }
  .hero { grid-template-columns: minmax(0,1.03fr) minmax(380px,.97fr); gap: 42px; }
  .hero h1 { font-size: clamp(2.55rem, 4.6vw, 3.7rem); }
  .sector-row { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
  .impact-intro { grid-column: 1 / -1; padding: 36px 0 24px; }
  .impact-intro h2 { max-width: none; }
}

/* Tablet */
@media (max-width: 1040px) {
  :root { --header-height: 78px; }
  .shell { width: min(100% - 40px, 900px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    z-index: 101;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    max-width: 900px;
    margin-inline: auto;
    padding: 18px;
    border: 1px solid rgba(211,226,241,.92);
    border-radius: 25px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.985);
    transform-origin: top;
    transition: opacity .28s ease, transform .28s var(--ease-out), visibility .28s;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .mobile-link {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 15px;
    color: #34445b;
    background: #f7fbff;
    font-size: .8rem;
    font-weight: 600;
  }
  .mobile-link .ui-icon { width: 1.25rem; height: 1.25rem; color: #7b91a8; }
  .mobile-link.active { color: var(--blue-600); background: var(--surface-blue); }
  .mobile-link.active .ui-icon { color: var(--blue-600); }
  .mobile-menu > .button { grid-column: 1 / -1; margin-top: 3px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 56px;
    padding-bottom: 62px;
  }
  .hero::before { inset: 16px -18px 18px; border-radius: 40px; }
  .hero::after { left: 4%; top: 38%; }
  .hero-copy { max-width: 780px; }
  .hero h1 { max-width: 780px; font-size: clamp(2.5rem, 6.5vw, 3.55rem); }
  .hero-lead { max-width: 740px; }
  .visual-frame { width: min(100%, 660px); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2n) { border-left: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .problem-grid, .services-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item { min-height: 135px; }
  .sector-row { grid-template-columns: repeat(3, 1fr); }
  .process-line { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .process-line::before { display: none; }
  .process-step { padding: 0 18px; }
  .partner-card, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .partner-quote { min-height: 230px; }
  .page-hero { min-height: 330px; grid-template-columns: 1fr; gap: 24px; }
  .page-hero-badge { min-width: 0; width: fit-content; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --header-height: 74px; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  body.menu-open::after { inset: var(--header-height) 0 0; }
  .shell { width: min(100% - 26px, 620px); }
  .site-header { min-height: var(--header-height); }
  .header-inner { min-height: var(--header-height); gap: 12px; }
  .brand img { width: 175px; }
  .header-actions > .button { display: none; }
  .menu-toggle { width: 47px; height: 47px; border-radius: 16px; }
  .mobile-menu { right: 13px; left: 13px; grid-template-columns: 1fr; padding: 13px; border-radius: 22px; }
  .mobile-link { min-height: 49px; }

  .hero { gap: 34px; padding-top: 38px; padding-bottom: 44px; }
  .hero::before { inset: 8px -5px 10px; border-radius: 31px; background-size: auto, 28px 28px, 28px 28px; }
  .hero::after { width: 150px; height: 150px; left: -5%; top: 47%; }
  .eyebrow { font-size: .73rem; line-height: 1.7; }
  .eyebrow span { width: 24px; flex-basis: 24px; }
  .hero h1 {
    margin: 15px 0 16px;
    font-size: clamp(2rem, 8.7vw, 2.75rem);
    line-height: 1.48;
    letter-spacing: -.045em;
  }
  .hero-lead { font-size: .92rem; line-height: 1.95; }
  .hero-points { display: grid; gap: 10px; margin-top: 21px; font-size: .79rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 25px; }
  .hero-actions .button { width: 100%; }
  .button-large { min-height: 55px; font-size: .84rem; }
  .trust-note { align-items: flex-start; flex-direction: column; gap: 2px; margin-top: 19px; padding-top: 16px; }
  .hero-visual { margin-top: 2px; }
  .visual-frame { width: min(100%, 520px); animation-duration: 7s; }
  .floating-chip { min-width: 130px; padding: 9px 10px; border-radius: 15px; }
  .floating-chip strong { font-size: .65rem; }
  .floating-chip small { font-size: .57rem; }
  .chip-icon { width: 31px; height: 31px; flex-basis: 31px; border-radius: 10px; }
  .chip-icon .ui-icon { width: 1.05rem; height: 1.05rem; }
  .chip-one { top: 9%; left: 0; }
  .chip-two { right: 0; bottom: 4%; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 103px; padding: 15px 10px; text-align: center; }
  .proof-grid > div:first-child { border-right: 0; }
  .proof-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof-grid strong { font-size: .73rem; line-height: 1.65; }
  .proof-grid span { font-size: .65rem; line-height: 1.55; }

  .section { padding-top: 66px; padding-bottom: 66px; }
  .section-heading { margin-bottom: 31px; }
  .section-heading h2 { margin-top: 10px; font-size: 1.7rem; line-height: 1.55; }
  .section-heading p { font-size: .86rem; }
  .section-kicker { font-size: .72rem; }
  .problem-grid, .services-grid, .industry-grid, .details-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; padding: 23px; border-radius: 23px; }
  .line-icon { width: 50px; height: 50px; margin-bottom: 18px; border-radius: 16px; }
  .service-card { min-height: 285px; padding: 25px; border-radius: 25px; }
  .service-icon { width: 57px; height: 57px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-intro { grid-column: auto; padding: 34px 0 23px; }
  .impact-intro h2 { font-size: 1.25rem; }
  .impact-item { min-height: 100px; padding: 21px 4px; border-right: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .sector-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sector-tile { min-height: 145px; padding: 17px 9px; border-radius: 22px; }
  .sector-tile > span { width: 53px; height: 53px; }
  .process-line { grid-template-columns: 1fr; gap: 18px; }
  .process-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    text-align: right;
  }
  .process-step > span { grid-row: 1 / 3; width: 51px; height: 51px; margin: 0; border: 4px solid #f8fbff; }
  .process-step h3 { align-self: end; margin-bottom: 4px; }
  .partner-card { gap: 25px; padding: 25px; border-radius: 28px; }
  .partner-card h2 { font-size: 1.58rem; }
  .partner-list span { align-items: flex-start; font-size: .81rem; }
  .partner-quote { min-height: 0; padding: 24px; border-radius: 23px; }
  .final-cta { padding: 52px 0; }
  .final-cta-inner { align-items: stretch; flex-direction: column; }
  .final-cta h2 { font-size: 1.48rem; }
  .final-cta-inner .button { width: 100%; }

  .page-hero { min-height: 0; margin-top: 18px; padding: 37px 24px; border-radius: 29px; }
  .page-hero h1 { font-size: 2rem; line-height: 1.55; }
  .page-hero p { font-size: .88rem; }
  .page-hero-badge { width: 100%; padding: 20px; border-radius: 21px; }
  .badge-icon { width: 2rem; height: 2rem; }
  .detail-card, .industry-card, .about-main, .about-side, .contact-form { min-height: 0; padding: 24px; border-radius: 25px; }
  .detail-card h2 { font-size: 1.1rem; }
  .method-item { grid-template-columns: 61px 1fr; gap: 15px; padding: 22px; border-radius: 23px; }
  .method-num { width: 58px; height: 58px; border-radius: 19px; }
  .method-item h2 { font-size: .96rem; }
  .method-item p { font-size: .81rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; padding: 24px; }
  .contact-copy { padding: 6px 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 29px; padding-top: 48px; }
  .footer-bottom { flex-direction: column; gap: 5px; padding-bottom: 28px; }
  .floating-whatsapp { display: none; }

  .mobile-bottom {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 120;
    min-height: 72px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding: 8px 6px calc(7px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    color: rgba(255,255,255,.67);
    background: rgba(6,26,46,.97);
    backdrop-filter: blur(17px);
    box-shadow: 0 -8px 34px rgba(6,26,46,.22);
  }
  .mobile-bottom a {
    position: relative;
    min-height: 51px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 15px;
    font-size: .61rem;
    font-weight: 700;
    transition: color .25s ease, background .25s ease, transform .25s ease;
  }
  .mobile-bottom a:not(.mobile-wa):active { transform: scale(.94); }
  .mobile-bottom a.active { color: #fff; background: rgba(255,255,255,.07); }
  .bottom-icon { width: 1.3rem; height: 1.3rem; }
  .mobile-bottom a.active .bottom-icon { color: #69bdff; }
  .mobile-bottom .mobile-wa {
    width: 59px;
    height: 59px;
    min-height: 59px;
    margin: -25px auto 0;
    border: 6px solid var(--navy-950);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green-500), #08a852);
    box-shadow: 0 10px 25px rgba(14,173,91,.32);
    animation: wa-pulse 2.8s ease-in-out infinite;
  }
  .mobile-bottom .mobile-wa .icon { width: 27px; height: 27px; }
}

@media (max-width: 430px) {
  .shell { width: min(100% - 22px, 400px); }
  .brand img { width: 160px; }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.2rem); }
  .hero-lead { font-size: .86rem; }
  .floating-chip { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 85px; border-left: 0 !important; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .sector-row { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 1.78rem; }
  .method-item { grid-template-columns: 1fr; }
  .method-num { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   Contact page v5 — immediate form and direct WhatsApp access
   ========================================================= */
.contact-page { padding-top: 0; }
.contact-hero {
  position: relative;
  min-height: 225px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding: 38px 44px;
  overflow: hidden;
  border: 1px solid rgba(173, 207, 240, .72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(21,184,232,.11), transparent 18rem),
    radial-gradient(circle at 92% 0%, rgba(38,113,238,.12), transparent 18rem),
    linear-gradient(135deg, #fff 0%, #f7fbff 72%, #eef7ff 100%);
  box-shadow: var(--shadow-sm);
}
.contact-hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -105px;
  border-radius: 50%;
  border: 30px solid rgba(38,113,238,.045);
  pointer-events: none;
}
.contact-hero-copy { position: relative; z-index: 1; }
.contact-hero h1 {
  max-width: 760px;
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.55;
  letter-spacing: -.035em;
}
.contact-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}
.contact-hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 19px; }
.contact-hero-points span { display: inline-flex; align-items: center; gap: 8px; color: #34445b; font-size: .78rem; font-weight: 700; }
.contact-hero-wa {
  position: relative;
  z-index: 1;
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(14,173,91,.2);
  border-radius: 25px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 38px rgba(12,45,80,.08);
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.contact-hero-wa:hover { transform: translateY(-5px); border-color: rgba(14,173,91,.35); box-shadow: 0 22px 48px rgba(12,45,80,.12); }
.contact-hero-wa .icon { width: 50px; height: 50px; padding: 12px; border-radius: 17px; background-color: var(--green-600); }
.contact-hero-wa strong, .contact-hero-wa small { display: block; }
.contact-hero-wa strong { color: var(--navy-900); font-size: .86rem; }
.contact-hero-wa small { margin-top: 4px; color: var(--muted); font-size: .72rem; line-height: 1.7; }
.contact-wa-arrow { color: var(--green-600); font-size: 1.35rem; font-weight: 800; }

.contact-start {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
  grid-template-areas: "form aside";
  align-items: start;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 82px;
}
.contact-form-first { grid-area: form; }
.contact-aside { grid-area: aside; display: grid; gap: 16px; position: sticky; top: calc(var(--header-height) + 22px); }
.contact-form-first {
  gap: 16px;
  padding: clamp(25px, 3.7vw, 40px);
  border-color: #d6e6f5;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(38,113,238,.32), rgba(21,184,232,.12), rgba(14,173,91,.18)) border-box;
  box-shadow: 0 24px 65px rgba(12,45,80,.1);
}
.form-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.form-head h2 { margin: 7px 0 0; color: var(--ink); font-size: clamp(1.35rem, 2.4vw, 1.95rem); line-height: 1.65; }
.form-kicker { color: var(--blue-600); font-size: .72rem; font-weight: 800; }
.form-time { flex: 0 0 auto; padding: 8px 12px; border-radius: 999px; color: var(--blue-700); background: var(--surface-blue); font-size: .67rem; font-weight: 800; white-space: nowrap; }
.form-intro { margin: -2px 0 3px; color: var(--muted); font-size: .84rem; }
.contact-form label > small { margin-inline-start: 4px; color: #8b99aa; font-size: .68rem; font-weight: 500; }
.contact-form-first input,
.contact-form-first select { min-height: 50px; }
.contact-form-first textarea { min-height: 102px; }
.contact-form-first label:last-of-type textarea { min-height: 78px; }
.contact-submit { min-height: 58px; margin-top: 2px; border-radius: 17px; font-size: .86rem; }

.contact-aside-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: linear-gradient(160deg, #fff, #f6fbff);
  box-shadow: var(--shadow-xs);
}
.contact-aside-card h2 { margin: 10px 0 22px; color: var(--ink); font-size: 1.35rem; line-height: 1.65; }
.contact-steps { display: grid; gap: 10px; }
.contact-steps > div { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line-soft); border-radius: 17px; background: #fff; }
.contact-steps > div > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(145deg, var(--blue-700), var(--cyan-500)); font-family: "Noto Kufi Arabic", sans-serif; font-size: .72rem; font-weight: 800; box-shadow: 0 9px 20px rgba(38,113,238,.16); }
.contact-steps p { margin: 0; }
.contact-steps strong, .contact-steps small { display: block; }
.contact-steps strong { color: var(--navy-900); font-size: .78rem; }
.contact-steps small { margin-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.65; }
.contact-direct { margin-top: 0; background: linear-gradient(135deg, #effff5, #f8fffb); }
.contact-assurance { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px dashed #c9dbed; border-radius: 20px; background: rgba(247,251,255,.82); }
.assurance-dot { width: 12px; height: 12px; flex: 0 0 12px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 6px rgba(32,199,106,.1); }
.contact-assurance p { margin: 0; }
.contact-assurance strong, .contact-assurance small { display: block; }
.contact-assurance strong { color: var(--navy-900); font-size: .78rem; }
.contact-assurance small { color: var(--muted); font-size: .69rem; }

@media (max-width: 980px) {
  .contact-hero { grid-template-columns: 1fr; gap: 22px; }
  .contact-hero-wa { width: min(100%, 620px); }
  .contact-start { grid-template-columns: 1fr; grid-template-areas: "form" "aside"; }
  .contact-aside { position: static; grid-template-columns: 1fr 1fr; }
  .contact-aside-card { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .contact-page { padding-bottom: 0; }
  .contact-hero {
    min-height: 0;
    gap: 18px;
    margin-top: 14px;
    padding: 25px 21px;
    border-radius: 27px;
  }
  .contact-hero h1 { margin: 9px 0 8px; font-size: clamp(1.55rem, 7.2vw, 2.05rem); line-height: 1.55; }
  .contact-hero-copy > p { font-size: .82rem; line-height: 1.85; }
  .contact-hero-points { gap: 8px 13px; margin-top: 14px; }
  .contact-hero-points span { font-size: .68rem; }
  .contact-hero-wa { min-height: 82px; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 10px; padding: 14px; border-radius: 20px; }
  .contact-hero-wa .icon { width: 42px; height: 42px; padding: 10px; border-radius: 14px; }
  .contact-hero-wa strong { font-size: .75rem; }
  .contact-hero-wa small { font-size: .63rem; }
  .contact-start { gap: 18px; padding-top: 17px; padding-bottom: 56px; }
  .contact-form-first { gap: 14px; padding: 21px; border-radius: 25px; }
  .form-head { display: grid; gap: 9px; }
  .form-head h2 { font-size: 1.22rem; }
  .form-time { width: fit-content; }
  .form-intro { font-size: .76rem; }
  .contact-form-first input,
  .contact-form-first select { min-height: 48px; }
  .contact-form-first textarea { min-height: 92px; }
  .contact-form-first label:last-of-type textarea { min-height: 72px; }
  .contact-submit { min-height: 56px; font-size: .76rem; }
  .contact-aside { grid-template-columns: 1fr; gap: 13px; }
  .contact-aside-card { grid-column: auto; padding: 22px; border-radius: 24px; }
  .contact-aside-card h2 { font-size: 1.15rem; }
  .contact-steps > div { padding: 11px; }
  .contact-direct, .contact-assurance { border-radius: 18px; }
}

/* Final contact positioning refinements */
@media (min-width: 981px) {
  .contact-start {
    grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
    grid-template-areas: "aside form";
  }
}

@media (max-width: 720px) {
  .contact-hero-points { display: none; }
  .contact-hero h1 { font-size: clamp(1.42rem, 6.7vw, 1.85rem); }
  .contact-hero-copy > p { line-height: 1.75; }
  .contact-hero-wa {
    min-height: 64px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 11px 12px;
  }
  .contact-hero-wa .icon { width: 38px; height: 38px; padding: 9px; }
  .contact-hero-wa small { display: none; }
  .contact-wa-arrow { font-size: 1.1rem; }
}
