/* ==========================================================================
   HiSoft Corporation — hisoft.ca
   Main stylesheet · Developed by Omar Faruk
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2'); }

/* ---------- Design tokens ---------- */
:root {
  --teal-050: #EDF7F8;
  --teal-100: #D8EFF1;
  --teal-200: #ADDCE1;
  --teal-300: #6FC3CC;
  --teal-400: #2FB1BE;
  --teal-500: #1497A5;
  --teal-600: #0E7C89;
  --teal-700: #0B616C;
  --blue-500: #3E8FD8;
  --blue-700: #23617E;
  --gold-500: #F0AE38;
  --green-500: #7CB13F;
  --red-brand: #FF2D20;

  --ink-950: #081720;
  --ink-900: #0A1B24;
  --ink-800: #16303D;
  --ink-700: #29414F;
  --ink-600: #41586A;
  --ink-500: #587082;
  --ink-400: #7B93A3;

  --line: #E6EEF1;
  --line-soft: #EEF5F7;
  --line-strong: #D3E4E8;

  --bg: #FFFFFF;
  --bg-soft: #F6FAFB;
  --bg-softer: #FAFCFD;

  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 3px rgba(10, 46, 56, 0.06), 0 1px 2px rgba(10, 46, 56, 0.04);
  --shadow-sm: 0 3px 12px -4px rgba(10, 46, 56, 0.1);
  --shadow-md: 0 16px 38px -18px rgba(10, 46, 56, 0.22);
  --shadow-lg: 0 30px 70px -28px rgba(10, 46, 56, 0.32);
  --shadow-teal: 0 18px 44px -18px rgba(14, 124, 137, 0.42);

  --grad-teal: linear-gradient(135deg, #17A3B0, #0D7480);
  --grad-band: linear-gradient(118deg, #0C6773, #1497A5 55%, #2FB1BE);
  --grad-deep: linear-gradient(118deg, #08262F, #0D5A66 78%, #0E7C89);
  --grad-text: linear-gradient(96deg, #10919F 5%, #3E8FD8 95%);
  --grad-icon: linear-gradient(135deg, #E3F4F6, #D2ECF6);

  --header-h: 82px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-600);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-600); text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol { padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.14; }
::selection { background: #BFE7EB; color: var(--ink-950); }

:focus-visible { outline: 3px solid rgba(20, 151, 165, 0.5); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #C3D7DD; border-radius: 8px; border: 3px solid var(--bg-soft); }
::-webkit-scrollbar-thumb:hover { background: #A9C4CC; }

.skip-link {
  position: absolute; inset-inline-start: 0; top: 0; z-index: 200;
  transform: translateY(-130%); transition: transform .2s ease;
  background: var(--ink-900); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { transform: translateY(0); }

.container { max-width: 1216px; margin: 0 auto; padding: 0 32px; }

.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 15px; height: 15px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease,
              background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn .icon { transition: transform .25s ease; }
.btn:hover .icon-sm { transform: translateX(3px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-primary {
  background: var(--grad-teal); color: #fff;
  box-shadow: var(--shadow-teal), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 52px -18px rgba(14, 124, 137, 0.55), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-ghost { background: #fff; border-color: var(--line-strong); color: var(--ink-700); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--teal-700); box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.5); }
.btn-light:hover { transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--teal-600); font-weight: 600; font-size: 15px;
}
.text-link .icon { transition: transform .22s ease; }
.text-link:hover { color: var(--teal-700); }
.text-link:hover .icon { transform: translateX(3px); }

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-600); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-text); flex-shrink: 0;
}
.section-head .eyebrow::after {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-text); flex-shrink: 0;
}
.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.8); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-600);
  box-shadow: var(--shadow-sm); margin-bottom: 30px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(20, 151, 165, 0.35); animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.9); opacity: 0; } }

.section { padding: 112px 0; }
.section-head { max-width: 700px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1;
}
.section-lede { font-size: 17.5px; color: var(--ink-500); margin-top: 18px; line-height: 1.75; }
.accent-dot { color: var(--teal-500); }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 12px 40px -22px rgba(10, 46, 56, 0.3); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 58px; width: auto; transition: transform .25s ease; }
.brand:hover .brand-logo { transform: scale(1.02); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 15px; font-weight: 600; color: var(--ink-700);
  padding: 10px 15px; border-radius: 999px; position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--teal-700); background: var(--teal-050); }
.nav-link.is-active { color: var(--teal-700); background: var(--teal-050); box-shadow: inset 0 0 0 1px var(--teal-100); }
.icon-caret { width: 15px; height: 15px; transition: transform .25s ease; }

.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: 600px; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 14px;
  opacity: 0; visibility: hidden; transition: opacity .24s ease, transform .24s cubic-bezier(.16,1,.3,1), visibility .24s;
}
.dropdown::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  border-radius: 3px 0 0 0;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-item:hover .icon-caret, .nav-item.open .icon-caret { transform: rotate(180deg); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-700);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.dropdown-link:hover { background: var(--teal-050); color: var(--teal-700); transform: translateX(2px); }
.dd-icon { width: 19px; height: 19px; color: var(--teal-500); }
.dropdown-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; padding: 13px; border-top: 1px solid var(--line-soft);
  font-size: 14px; font-weight: 600; color: var(--teal-600); border-radius: 0 0 14px 14px;
}
.dropdown-all:hover { background: var(--teal-050); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 14.5px; font-weight: 600; color: var(--ink-700);
  transition: color .2s ease;
}
.nav-phone span { white-space: nowrap; }
.nav-cta { white-space: nowrap; }
.nav-phone:hover { color: var(--teal-600); }
.nav-phone .icon { color: var(--teal-500); }
.nav-cta-mobile { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: 12px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink-800); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Language switcher */
.lang-switch { position: relative; direction: ltr; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 11px;
  border: 1px solid var(--line); background: #fff;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700; letter-spacing: .01em;
  color: var(--ink-700); cursor: pointer;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-toggle:hover { border-color: var(--teal-400); color: var(--teal-700); box-shadow: var(--shadow-xs); }
.lang-toggle .icon-sm { color: var(--teal-500); }
.lang-toggle .icon-caret { width: 15px; height: 15px; color: var(--ink-400); transition: transform .25s ease; }
.lang-switch.open .lang-toggle .icon-caret { transform: rotate(180deg); }
.lang-switch.open .lang-toggle { border-color: var(--teal-400); color: var(--teal-700); }
.lang-code { line-height: 1; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 10px 12px; border-radius: 10px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--ink-700);
  text-align: left; transition: background .16s ease, color .16s ease;
}
.lang-opt:hover { background: var(--teal-050); color: var(--teal-700); }
.lang-opt .lang-check { opacity: 0; color: var(--teal-600); width: 16px; height: 16px; flex: none; }
.lang-opt.is-active { color: var(--teal-700); }
.lang-opt.is-active .lang-check { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 84px) 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .9; }
.hero-blob-1 { width: 640px; height: 640px; right: -180px; top: -160px;
  background: radial-gradient(circle at 40% 40%, rgba(23, 163, 176, 0.16), rgba(237, 247, 248, 0.6) 55%, transparent 75%); }
.hero-blob-2 { width: 540px; height: 540px; left: -200px; bottom: -140px;
  background: radial-gradient(circle at 60% 40%, rgba(62, 143, 216, 0.12), rgba(239, 246, 252, 0.5) 55%, transparent 75%); }
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(14, 124, 137, 0.16) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 55% 18%, #000 5%, transparent 72%);
  mask-image: radial-gradient(ellipse 72% 62% at 55% 18%, #000 5%, transparent 72%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: 0.028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 56px; align-items: center; padding-bottom: 96px;
}
.hero-title {
  font-size: clamp(2.6rem, 4.9vw, 4.15rem); font-weight: 800;
  letter-spacing: -0.034em; line-height: 1.03; color: var(--ink-950);
}
.hero-sub { font-size: 18.5px; color: var(--ink-500); margin-top: 26px; max-width: 560px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px 0; margin-top: 42px; list-style: none; }
.hero-points li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-600);
  padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line);
}
.hero-points li:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-points .icon { color: var(--teal-500); }

/* Hero visual — product window composition */
.hero-visual { position: relative; height: 600px; }
.hv-glow {
  position: absolute; width: 560px; height: 420px; left: 50%; top: 110px; transform: translateX(-46%);
  background: radial-gradient(closest-side, rgba(20, 151, 165, 0.22), rgba(62, 143, 216, 0.1) 62%, transparent);
  filter: blur(52px);
}
.orbit-ring { position: absolute; border: 1.5px solid rgba(20, 151, 165, 0.3); border-radius: 50%; }
.orbit-ring-1 { width: 660px; height: 280px; top: 84px; left: 50%; transform: translateX(-50%) rotate(-16deg); }
.orbit-ring-2 { width: 470px; height: 200px; top: 320px; left: 50%; transform: translateX(-50%) rotate(-16deg); border-color: rgba(62, 143, 216, 0.22); border-style: dashed; }
.orbit-sat {
  position: absolute; width: 660px; height: 280px; top: 84px; left: 50%; margin-left: -330px;
  transform: rotate(-16deg); pointer-events: none; z-index: 3;
}
.orbit-sat::after {
  content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F2FAFF, #A6D2F0 55%, #4E97CF);
  box-shadow: 0 0 0 5px rgba(78, 151, 207, 0.16);
  offset-path: path('M 330 1 A 329 139 0 1 1 329.9 1 Z');
  animation: orbitTravel 30s linear infinite;
}
@keyframes orbitTravel { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.app-window {
  position: absolute; width: 560px; left: 50%; transform: translateX(-46%); top: 96px; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, var(--shadow-lg), 0 46px 90px -40px rgba(14, 124, 137, 0.35);
  overflow: hidden;
  animation: floatWin 8s ease-in-out infinite alternate;
}
@keyframes floatWin {
  from { transform: translateX(-46%) translateY(-6px); }
  to   { transform: translateX(-46%) translateY(8px); }
}
.aw-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--bg-softer); border-bottom: 1px solid var(--line-soft);
}
.aw-dots { display: flex; gap: 6px; }
.aw-dots i { width: 10px; height: 10px; border-radius: 50%; background: #F4645F; }
.aw-dots i:nth-child(2) { background: #F9BD4F; }
.aw-dots i:nth-child(3) { background: #52C765; }
.aw-url {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 16px; font-size: 12.5px; font-weight: 500; color: var(--ink-500);
  margin: 0 auto;
}
.aw-lock { width: 12px; height: 12px; color: var(--teal-500); }
.aw-spacer { width: 42px; }
.aw-body { display: grid; grid-template-columns: 132px 1fr; }
.aw-side {
  border-right: 1px solid var(--line-soft); background: var(--bg-softer);
  padding: 18px 14px; display: flex; flex-direction: column; gap: 14px;
}
.aw-logo-dot {
  width: 26px; height: 26px; border-radius: 8px; background: var(--grad-teal);
  margin-bottom: 8px; box-shadow: var(--shadow-sm);
}
.aw-nav { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: 8px; }
.aw-nav i { width: 12px; height: 12px; border-radius: 4px; background: var(--line-strong); flex-shrink: 0; }
.aw-nav b { display: block; height: 7px; border-radius: 4px; background: var(--line); width: var(--w, 60%); }
.aw-nav.is-on { background: var(--teal-050); }
.aw-nav.is-on i { background: var(--teal-400); }
.aw-nav.is-on b { background: var(--teal-200); }
.aw-main { padding: 18px 20px 20px; }
.aw-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.aw-kpi {
  background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 11px 12px; display: flex; flex-direction: column; gap: 2px;
}
.aw-kpi span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-400); }
.aw-kpi strong { font-family: var(--font-head); font-weight: 800; font-size: 17.5px; color: var(--ink-900); letter-spacing: -0.01em; }
.aw-kpi em { font-style: normal; font-size: 11px; font-weight: 600; }
.aw-kpi em.up { color: #2E9E5B; }
.aw-chart { margin-top: 14px; border: 1px solid var(--line-soft); border-radius: 12px; padding: 10px 0 0; overflow: hidden; background: linear-gradient(180deg, #FDFEFE, #F8FCFD); }
.aw-chart svg { width: 100%; height: 118px; }
.aw-table { margin-top: 14px; display: flex; flex-direction: column; }
.aw-row {
  display: grid; grid-template-columns: 1.5fr 0.8fr auto; gap: 10px; align-items: center;
  padding: 9px 4px; border-bottom: 1px solid var(--line-soft); font-size: 12.5px;
}
.aw-row:last-child { border-bottom: none; padding-bottom: 0; }
.aw-name { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-800); }
.aw-name .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.d1 { background: var(--teal-400); } .dot.d2 { background: var(--blue-500); } .dot.d3 { background: var(--gold-500); }
.aw-qty { color: var(--ink-500); }
.aw-pill {
  font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; padding: 3px 10px;
}
.aw-pill.ok { background: #E7F5EC; color: #24824A; }
.aw-pill.wait { background: #FCF2DE; color: #A9741B; }

.hv-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 4;
}
.hv-notif {
  display: flex; gap: 13px; align-items: flex-start;
  width: 272px; left: 50%; margin-left: -300px; top: 452px; padding: 16px 18px;
  animation: floatY 6s ease-in-out .9s infinite alternate;
}
.hv-avatar {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #86BC49, #4E8F2F);
  box-shadow: 0 8px 18px -8px rgba(94, 156, 53, 0.6);
}
.hv-notif-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hv-notif-body b { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink-900); }
.hv-notif-body small { font-size: 12px; color: var(--ink-400); }
.hv-bar { display: block; height: 7px; border-radius: 5px; background: var(--line-soft); margin-top: 7px; overflow: hidden; width: 100%; }
.hv-bar i { display: block; height: 100%; width: 100%; border-radius: 5px; background: linear-gradient(90deg, #86BC49, #B4D64B); }

.hv-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 19px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  color: var(--ink-800); box-shadow: var(--shadow-md); z-index: 4;
}
.hv-chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c, var(--teal-500)); }
.hv-chip-1 { top: 46px; right: 3%; animation: floatY 5.5s ease-in-out .4s infinite alternate; }
.hv-chip-2 { bottom: 4px; right: 12%; animation: floatY 6.8s ease-in-out 1.2s infinite alternate; }
@keyframes floatY { from { transform: translateY(-6px); } to { transform: translateY(8px); } }

/* Services marquee */
.marquee {
  position: relative; border-top: 1px solid var(--line-soft);
  padding: 22px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marqueeScroll 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; color: var(--ink-600);
}
.marquee-item .icon { color: var(--teal-500); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }

/* ---------- Services grid ---------- */
.section-services { background: var(--bg); }
.services-grid, .services-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-text); opacity: 0; transition: opacity .3s ease;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px 190px at 50% -8%, rgba(20, 151, 165, 0.07), transparent);
  transition: opacity .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: var(--teal-200); box-shadow: var(--shadow-md); }
.service-card:hover::before, .service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-icon); color: var(--teal-600);
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.service-card:hover .service-icon {
  background: var(--grad-teal); color: #fff; transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 10px 22px -8px rgba(14, 124, 137, 0.55);
}
.service-body { display: flex; flex-direction: column; gap: 10px; }
.service-name { font-family: var(--font-head); font-weight: 700; font-size: 18.5px; color: var(--ink-900); letter-spacing: -0.015em; }
.service-short { font-size: 14.5px; line-height: 1.66; color: var(--ink-500); }
.service-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--teal-600);
}
.service-more .icon { transition: transform .25s ease; }
.service-card:hover .service-more .icon { transform: translateX(4px); }

.service-card-cta { background: var(--grad-deep); border-color: transparent; }
.service-card-cta::after { background: radial-gradient(420px 190px at 50% -8%, rgba(255, 255, 255, 0.12), transparent); }
.service-card-cta .service-name, .service-card-cta .service-more { color: #fff; }
.service-card-cta .service-short { color: rgba(255, 255, 255, 0.76); }
.service-icon-cta { background: rgba(255, 255, 255, 0.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }
.service-card-cta:hover .service-icon { background: rgba(255, 255, 255, 0.26); color: #fff; }
.service-card-cta::before { background: linear-gradient(90deg, #2FB1BE, #3E8FD8); }

/* ---------- Flagship ---------- */
.section-flagship {
  position: relative; background: var(--bg-soft);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden;
}
.flagship-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 76px; align-items: center; position: relative; }
.flagship-visual { position: relative; min-height: 440px; }
.orbit-ring-3 { width: 560px; height: 240px; top: 66px; left: 50%; transform: translateX(-50%) rotate(-14deg); border-color: rgba(20, 151, 165, 0.24); }
.fv-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 40px 80px -40px rgba(14, 124, 137, 0.3);
}
.fv-table { max-width: 480px; margin: 44px auto 0; padding: 0 26px 22px; overflow: hidden; }
.fv-table::before {
  content: "SharePlus · Shareholder Register";
  display: flex; align-items: center; margin: 0 -26px 6px; padding: 15px 22px;
  background: var(--bg-softer); border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--ink-800);
}
.fv-table-head {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-400); padding: 12px 0 12px; border-bottom: 1px solid var(--line-soft);
}
.fv-table-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 10px; align-items: center;
  padding: 13.5px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; color: var(--ink-600);
}
.fv-table-row:last-child { border-bottom: none; }
.fv-cell-name { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-800); }
.fv-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-400); }
.fv-dot.d2 { background: var(--blue-500); } .fv-dot.d3 { background: var(--gold-500); } .fv-dot.d4 { background: var(--green-500); }
.fv-val { font-weight: 600; color: var(--teal-700); font-variant-numeric: tabular-nums; }
.fv-mini {
  position: absolute; right: -8px; bottom: -28px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px; animation: floatY 6s ease-in-out infinite alternate;
}
.fv-mini-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); }
.fv-mini-status { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #24824A; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.check-list li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; font-weight: 500; color: var(--ink-700); }
.check-list .icon {
  color: var(--teal-600); background: var(--teal-050); border-radius: 50%; padding: 5px;
  width: 26px; height: 26px; box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.15);
}
.section-flagship .hero-actions { margin-top: 34px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-tile {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.why-tile::after {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(380px 170px at 50% -8%, rgba(20, 151, 165, 0.06), transparent);
  transition: opacity .3s ease;
}
.why-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.why-tile:hover::after { opacity: 1; }
.why-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-icon); color: var(--teal-600); margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.why-tile:hover .why-icon { background: var(--grad-teal); color: #fff; transform: scale(1.05); }
.why-tile h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.012em; }
.why-tile p { font-size: 14.5px; color: var(--ink-500); line-height: 1.68; }

/* ---------- Process ---------- */
.section-process { background: var(--bg-softer); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.process-track { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process-track::before {
  content: ""; position: absolute; top: -34px; left: 8%; right: 8%;
  border-top: 2px dashed var(--line-strong); z-index: 0; display: none;
}
.process-step {
  position: relative; z-index: 1; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 22px 28px; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.step-num {
  position: absolute; top: 10px; right: 16px;
  font-family: var(--font-head); font-weight: 800; font-size: 44px; letter-spacing: -0.02em;
  color: rgba(14, 124, 137, 0.09);
}
.step-icon {
  width: 54px; height: 54px; margin-bottom: 18px; border-radius: 16px;
  display: grid; place-items: center; background: var(--grad-icon);
  color: var(--teal-600); box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
  transition: transform .25s ease, background .3s ease, color .3s ease;
}
.process-step:hover .step-icon { transform: scale(1.07); background: var(--grad-teal); color: #fff; }
.process-step h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-500); line-height: 1.62; }

/* ---------- Tech ---------- */
.tech-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 76px; align-items: center; }
.tech-copy .text-link { margin-top: 24px; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tech-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 7px; overflow: hidden;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.tech-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.tech-name { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink-900); letter-spacing: -0.01em; }
.tech-name::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal-400); flex-shrink: 0; }
.tech-card:nth-of-type(2) .tech-name::before { background: var(--blue-500); }
.tech-card:nth-of-type(3) .tech-name::before { background: #7A86B8; }
.tech-card:nth-of-type(4) .tech-name::before { background: var(--gold-500); }
.tech-card:nth-of-type(5) .tech-name::before { background: var(--green-500); }
.tech-card:nth-of-type(6) .tech-name::before { background: #E2574C; }
.tech-card:nth-of-type(7) .tech-name::before { background: #5B6D79; }
.tech-desc { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }
.tech-card-hero { grid-column: span 2; background: var(--grad-teal); border-color: transparent; box-shadow: var(--shadow-teal); }
.tech-card-hero .tech-name { color: #fff; font-size: 22px; }
.tech-card-hero .tech-name::before { background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25); }
.tech-card-hero .tech-desc { color: rgba(255, 255, 255, 0.85); font-size: 14.5px; }
.tech-card-hero:hover { transform: translateY(-5px); }

/* ---------- Industries ---------- */
.section-industries { background: var(--bg); }
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.industry-tile {
  position: relative; background: var(--bg-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 26px 22px; overflow: hidden;
  transition: transform .28s cubic-bezier(.16,1,.3,1), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.industry-tile::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-text); opacity: 0; transition: opacity .28s ease;
}
.industry-tile:hover { transform: translateY(-5px); background: #fff; border-color: var(--teal-200); box-shadow: var(--shadow-md); }
.industry-tile:hover::before { opacity: 1; }
.industry-icon {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: #fff; border: 1px solid var(--line); color: var(--teal-600); margin-bottom: 18px;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.industry-tile:hover .industry-icon { background: var(--grad-teal); color: #fff; border-color: transparent; }
.industry-tile h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 7px; }
.industry-tile p { font-size: 13px; color: var(--ink-500); line-height: 1.58; }

/* ---------- Stats band ---------- */
.stats-band { position: relative; background: var(--grad-band); padding: 84px 0; overflow: hidden; }
.stats-band::after {
  content: ""; position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stats-orbit {
  position: absolute; width: 940px; height: 390px; right: -240px; top: -160px;
  border: 1.5px solid rgba(255, 255, 255, 0.16); border-radius: 50%; transform: rotate(-16deg);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; z-index: 1; }
.stat {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); padding: 30px 18px 26px;
  transition: transform .28s ease, background .28s ease;
}
.stat:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.16); }
.stat-value {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.3rem); color: #fff; letter-spacing: -0.025em; line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.stat-label { display: block; margin-top: 10px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, 0.88); }

/* ---------- CTA band (card style) ---------- */
.cta-band { padding: 40px 0 116px; background: var(--bg); }
.cta-card {
  position: relative; background: var(--grad-deep); border-radius: var(--radius-xl);
  padding: 68px 72px; overflow: hidden;
  box-shadow: 0 40px 90px -34px rgba(8, 38, 47, 0.55);
}
.cta-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-orbit {
  position: absolute; width: 780px; height: 330px; left: -200px; bottom: -170px;
  border: 1.5px solid rgba(255, 255, 255, 0.1); border-radius: 50%; transform: rotate(-16deg);
}
.cta-orbit-2 { left: auto; bottom: auto; right: -240px; top: -180px; width: 880px; height: 370px; border-color: rgba(47, 177, 190, 0.24); }
.cta-mark {
  position: absolute; right: -60px; bottom: -70px; width: 330px; opacity: 0.1;
  transform: rotate(-8deg); pointer-events: none;
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; z-index: 1; }
.cta-copy h2 { color: #fff; font-size: clamp(1.85rem, 3.1vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; }
.cta-copy p { color: rgba(255, 255, 255, 0.78); font-size: 16.5px; margin-top: 15px; max-width: 560px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 16px; transition: color .2s ease; }
.cta-phone:hover { color: #9FDDE4; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #071E28; color: rgba(255, 255, 255, 0.75); overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 177, 190, 0.6), transparent);
}
.site-footer::after {
  content: ""; position: absolute; width: 720px; height: 520px; right: -180px; top: -260px;
  background: radial-gradient(closest-side, rgba(20, 151, 165, 0.16), transparent);
  pointer-events: none;
}
.footer-orbit {
  position: absolute; width: 1000px; height: 410px; right: -300px; top: -200px;
  border: 1.5px solid rgba(20, 151, 165, 0.18); border-radius: 50%; transform: rotate(-16deg);
}
.footer-grid {
  position: relative; display: grid; grid-template-columns: 1.5fr 0.8fr 1.15fr 1.25fr;
  gap: 48px; padding: 80px 0 56px; z-index: 1;
}
.footer-logo { height: 62px; width: auto; margin-bottom: 24px; }
.footer-blurb { font-size: 14.5px; line-height: 1.75; color: rgba(255, 255, 255, 0.6); max-width: 330px; }
.footer-tech { display: flex; gap: 10px; margin-top: 24px; }
.tech-chip {
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px; padding: 6px 15px;
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
}
.footer-title { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.42); margin-bottom: 22px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: rgba(255, 255, 255, 0.74); margin-bottom: 13px; transition: color .2s ease, transform .2s ease; }
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-more { color: var(--teal-300) !important; font-weight: 600; }
.footer-contact-row { display: flex !important; align-items: flex-start; gap: 11px; }
.footer-contact-row .icon { color: var(--teal-400); margin-top: 2px; }
.footer-contact-row em {
  font-style: normal; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(255, 255, 255, 0.09); border-radius: 999px; padding: 2px 9px; margin-left: 7px;
  color: rgba(255, 255, 255, 0.55); vertical-align: 1px;
}
.footer-bottom {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 26px 0 32px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; z-index: 1;
}
.footer-domain { color: var(--teal-300); font-weight: 600; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 78px) 0 78px;
  background: linear-gradient(180deg, #F1F8F9 0%, #FFFFFF 100%); overflow: hidden;
}
.page-hero .hero-grid-dots {
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 82% 8%, #000 5%, transparent 68%);
  mask-image: radial-gradient(ellipse 70% 90% at 82% 8%, #000 5%, transparent 68%);
}
.page-hero-orbit {
  position: absolute; width: 720px; height: 300px; right: -190px; top: -70px;
  border: 1.5px solid rgba(20, 151, 165, 0.2); border-radius: 50%; transform: rotate(-16deg);
}
.page-hero::after {
  content: ""; position: absolute; width: 520px; height: 380px; right: -80px; top: -80px;
  background: radial-gradient(closest-side, rgba(20, 151, 165, 0.12), transparent);
  pointer-events: none;
}
.breadcrumb {
  position: relative; display: flex; width: fit-content; flex-wrap: wrap; gap: 9px; align-items: center;
  font-size: 13px; color: var(--ink-400); margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.85); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-xs); z-index: 1;
}
.breadcrumb a { color: var(--teal-600); font-weight: 600; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb .sep { color: #B9CDD4; }
.page-title {
  position: relative; font-size: clamp(2.2rem, 4.4vw, 3.3rem); font-weight: 800;
  letter-spacing: -0.03em; max-width: 840px; color: var(--ink-950); z-index: 1;
}
.page-lede { position: relative; font-size: 18px; color: var(--ink-500); margin-top: 20px; max-width: 720px; line-height: 1.75; z-index: 1; }
.page-hero .eyebrow { position: relative; z-index: 1; }

/* ---------- Service detail ---------- */
.service-hero-icon {
  position: relative; width: 78px; height: 78px; border-radius: 22px; display: grid; place-items: center;
  background: var(--grad-teal); color: #fff; box-shadow: var(--shadow-teal); margin-bottom: 28px; z-index: 1;
}
.service-hero-icon .icon { width: 36px; height: 36px; }
.service-layout { display: grid; grid-template-columns: 1fr 356px; gap: 68px; align-items: start; }
.service-content h2 {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin: 48px 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.service-content h2::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.service-content h2:first-child { margin-top: 0; }
.service-content > p { font-size: 16.5px; line-height: 1.8; color: var(--ink-600); margin-bottom: 19px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-tile {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; overflow: hidden;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}
.feature-tile:hover { border-color: var(--teal-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-check {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-icon); color: var(--teal-600); margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
  transition: background .28s ease, color .28s ease;
}
.feature-tile:hover .feature-check { background: var(--grad-teal); color: #fff; }
.feature-tile h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.feature-tile p { font-size: 13.5px; color: var(--ink-500); line-height: 1.64; }

.tech-note {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--teal-050), #E9F3FB); border: 1px solid var(--teal-100);
  border-radius: var(--radius); padding: 24px 28px; margin-top: 44px;
}
.tech-note .icon { color: var(--teal-600); width: 30px; height: 30px; }
.tech-note p { font-size: 14.5px; color: var(--ink-700); flex: 1; min-width: 220px; line-height: 1.65; }
.tech-note strong { color: var(--teal-700); }

.aside-card {
  position: sticky; top: calc(var(--header-h) + 26px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.aside-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-text);
}
.aside-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.015em; }
.aside-card > p { font-size: 14px; color: var(--ink-500); margin-bottom: 24px; line-height: 1.65; }
.aside-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.aside-row { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 500; color: var(--ink-700); transition: color .2s ease; }
.aside-row:hover { color: var(--teal-700); }
.aside-row .icon { color: var(--teal-500); margin-top: 1px; }
.aside-row em {
  font-style: normal; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  background: var(--teal-100); color: var(--teal-700); border-radius: 999px; padding: 2px 8px; margin-left: 6px;
}
.aside-card .btn { width: 100%; }
.aside-note { font-size: 12.5px; color: var(--ink-400); text-align: center; margin-top: 15px; }

.related-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 44px; flex-wrap: wrap; }
.related-head .section-title { font-size: clamp(1.55rem, 2.7vw, 2.05rem); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 72px; align-items: center; }
.about-copy p { font-size: 16.5px; line-height: 1.8; color: var(--ink-600); margin-bottom: 19px; }
.about-visual { position: relative; min-height: 480px; padding-bottom: 130px; }
.about-photo {
  position: relative; margin: 26px 0 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(360px 220px at 25% 10%, rgba(20, 151, 165, 0.16), transparent),
    radial-gradient(320px 200px at 80% 90%, rgba(62, 143, 216, 0.14), transparent),
    var(--bg-soft);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo.img-failed img { display: none; }
.about-card {
  position: absolute; left: -26px; bottom: 0; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 40px 80px -40px rgba(14, 124, 137, 0.28);
  padding: 26px 28px; max-width: 400px; width: calc(100% - 40px);
}
.about-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-text); border-radius: 22px 22px 0 0; }
@media (max-width: 640px) {
  .about-card { position: static; width: 100%; max-width: none; margin-top: 18px; }
  .about-visual { padding-bottom: 0; min-height: 0; }
}
.about-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.about-card-pin {
  width: 48px; height: 48px; border-radius: 14px; background: var(--grad-icon);
  color: var(--teal-600); display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
}
.about-card-title { font-family: var(--font-head); font-weight: 800; font-size: 17.5px; color: var(--ink-900); }
.about-card-sub { font-size: 13px; color: var(--ink-400); }
.about-card-rows { display: flex; flex-direction: column; gap: 13px; }
.about-card-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding-bottom: 13px; border-bottom: 1px solid var(--line-soft); }
.about-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-card-row span:first-child { color: var(--ink-400); }
.about-card-row span:last-child { font-weight: 600; color: var(--ink-800); text-align: right; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  position: relative; border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--line); background: #fff; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.mv-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-teal); }
.mv-card.vision::before { background: linear-gradient(90deg, #3E8FD8, #2FB1BE); }
.mv-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(420px 190px at 50% -8%, rgba(20, 151, 165, 0.06), transparent);
  transition: opacity .3s ease;
}
.mv-card:hover::after { opacity: 1; }
.mv-icon {
  width: 54px; height: 54px; border-radius: 15px; background: var(--grad-icon);
  color: var(--teal-600); display: grid; place-items: center; margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
}
.mv-card.vision .mv-icon { background: linear-gradient(135deg, #E5EFF9, #D8EAF8); color: var(--blue-700); box-shadow: inset 0 0 0 1px rgba(62, 143, 216, 0.16); }
.mv-card h3 { font-size: 21.5px; font-weight: 800; margin-bottom: 13px; letter-spacing: -0.015em; }
.mv-card p { font-size: 15.5px; color: var(--ink-500); line-height: 1.75; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 404px 1fr; gap: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.contact-card-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--grad-icon);
  color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 151, 165, 0.12);
  transition: background .28s ease, color .28s ease;
}
.contact-card:hover .contact-card-icon { background: var(--grad-teal); color: #fff; }
.contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.contact-card h3 em {
  font-style: normal; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  background: var(--teal-100); color: var(--teal-700); border-radius: 999px; padding: 2px 9px;
}
.contact-card p, .contact-card a.contact-line { font-size: 15px; color: var(--ink-600); display: block; line-height: 1.6; }
.contact-card a.contact-line { font-weight: 600; color: var(--teal-700); }
.contact-card a.contact-line:hover { color: var(--teal-500); }
.contact-card small { display: block; font-size: 12.5px; color: var(--ink-400); margin-top: 3px; }

.contact-form-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 44px; overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 22px);
}
.contact-form-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-text); }
.contact-form-card h2 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 7px; }
.contact-form-card > p { font-size: 14.5px; color: var(--ink-500); margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--ink-700); }
.form-field label .req { color: #C0392B; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink-800);
  background: var(--bg-softer); border: 1.5px solid var(--line-strong); border-radius: 13px; padding: 13.5px 17px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; background: #fff; border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 151, 165, 0.15);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #9FB4C0; }
.form-field .field-error { font-size: 13px; color: #C0392B; }
.form-field input.is-invalid, .form-field textarea.is-invalid, .form-field select.is-invalid { border-color: #DA6C5B; }
.form-submit { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--ink-400); max-width: 340px; line-height: 1.55; }

.flash {
  display: flex; align-items: flex-start; gap: 13px;
  border-radius: var(--radius); padding: 17px 20px; margin-bottom: 28px; font-size: 14.5px; font-weight: 500;
}
.flash-success { background: #EAF7EF; border: 1px solid #BFE5CC; color: #1E7A43; }
.flash-error { background: #FCEFEC; border: 1px solid #F2CDC5; color: #A93A28; }
.flash .icon { margin-top: 1px; }

.map-card {
  margin-top: 68px; border: 1px solid var(--line); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.map-card iframe { display: block; width: 100%; height: 440px; border: 0; filter: saturate(0.92); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover { transform: translateY(-7px); border-color: var(--teal-200); box-shadow: var(--shadow-md); }
.post-cover {
  display: block; aspect-ratio: 16 / 9; overflow: hidden; position: relative;
  background:
    radial-gradient(340px 160px at 20% 0%, rgba(20, 151, 165, 0.14), transparent),
    radial-gradient(300px 150px at 85% 100%, rgba(62, 143, 216, 0.12), transparent),
    var(--bg-soft);
}
.post-cover > img { position: relative; z-index: 1; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.post-card:hover .post-cover img { transform: scale(1.045); }
.post-cover-fallback {
  display: grid; place-items: center; width: 100%; height: 100%;
  background:
    radial-gradient(340px 160px at 20% 0%, rgba(20, 151, 165, 0.14), transparent),
    radial-gradient(300px 150px at 85% 100%, rgba(62, 143, 216, 0.12), transparent),
    var(--bg-soft);
}
.post-cover-fallback img { width: 84px; height: auto; opacity: .8; transform: none !important; }
.post-body { display: flex; flex-direction: column; gap: 11px; padding: 24px 26px 26px; flex: 1; }
.post-meta { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--ink-400); text-transform: uppercase; letter-spacing: .05em; }
.post-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal-300); display: inline-block; }
.post-title { font-family: var(--font-head); font-weight: 700; font-size: 18.5px; letter-spacing: -0.015em; color: var(--ink-900); line-height: 1.32; }
.post-excerpt { font-size: 14.5px; line-height: 1.64; color: var(--ink-500); }
.post-card .service-more { margin-top: auto; padding-top: 6px; }
.blog-pagination { display: flex; justify-content: center; gap: 14px; margin-top: 52px; }
.blog-empty { text-align: center; padding: 40px 0 20px; display: flex; flex-direction: column; align-items: center; gap: 22px; color: var(--ink-500); }

.post-hero .page-title { max-width: 900px; font-size: clamp(2rem, 3.9vw, 3rem); }
.post-hero-meta { position: relative; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; font-size: 14.5px; font-weight: 600; color: var(--ink-500); z-index: 1; }
.draft-banner {
  position: relative; display: inline-block; background: #FCF2DE; border: 1px solid #F2DFB8; color: #8A6116;
  font-size: 13px; font-weight: 600; border-radius: 999px; padding: 7px 16px; margin-bottom: 18px; z-index: 1;
}
.post-article { padding-top: 64px; }
.post-container { max-width: 820px; }
.post-figure {
  margin: 0 0 40px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.post-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.prose { font-size: 17px; line-height: 1.85; color: var(--ink-600); }
.prose p { margin-bottom: 22px; }
.prose h2 {
  font-size: 25px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink-900);
  margin: 42px 0 16px; display: flex; align-items: center; gap: 14px;
}
.prose h2::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.prose h3 { font-size: 19.5px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink-900); margin: 34px 0 12px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; display: flex; flex-direction: column; gap: 9px; }
.prose ul li::marker { color: var(--teal-500); }
.prose ol li::marker { color: var(--teal-600); font-weight: 700; }
.prose blockquote {
  margin: 28px 0; padding: 20px 26px; border-left: 4px solid var(--teal-400);
  background: var(--teal-050); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px; color: var(--ink-700);
}
.prose blockquote p { margin: 0; }
.prose strong { color: var(--ink-800); }
.prose code {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 7px; font-size: 14.5px; color: var(--teal-700);
}
.prose a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--teal-200); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--teal-500); }

.post-footer-card {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 48px; padding: 26px 30px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.post-footer-mark { width: 58px; height: auto; flex-shrink: 0; }
.post-footer-card strong { font-family: var(--font-head); font-size: 15.5px; color: var(--ink-900); display: block; margin-bottom: 5px; }
.post-footer-card p { font-size: 13.5px; color: var(--ink-500); max-width: 480px; }
.post-footer-card > div { flex: 1; min-width: 240px; }

/* ---------- Testimonials ---------- */
.section-testimonials { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  position: relative; margin: 0; display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.testimonial-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad-text); opacity: 0; transition: opacity .3s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.testimonial-card:hover::before { opacity: 1; }
.testimonial-quote-icon {
  position: absolute; top: 22px; right: 24px; color: var(--teal-100);
}
.testimonial-quote-icon .icon { width: 40px; height: 40px; }
.testimonial-stars { display: flex; gap: 3px; font-size: 15px; }
.testimonial-stars .star { color: var(--line-strong); }
.testimonial-stars .star.is-on { color: var(--gold-500); }
.testimonial-card blockquote { margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--ink-700); flex: 1; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-teal); font-family: var(--font-head); font-weight: 800; font-size: 16px;
  box-shadow: 0 8px 18px -8px rgba(14, 124, 137, 0.55);
}
.testimonial-who b { display: block; font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: var(--ink-900); }
.testimonial-who small { display: block; font-size: 12.5px; color: var(--ink-400); margin-top: 2px; }

/* ---------- FAQ ---------- */
.section-faq { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover { border-color: var(--teal-200); }
.faq-item[open] { border-color: var(--teal-200); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink-900);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-700); }
.faq-chevron {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-050); color: var(--teal-600); flex-shrink: 0;
  transition: transform .3s ease, background .2s ease, color .2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--grad-teal); color: #fff; }
.faq-item > p { padding: 0 24px 22px; font-size: 15px; line-height: 1.75; color: var(--ink-500); }

/* ---------- Social icons ---------- */
.footer-social { display: flex; gap: 9px; margin-top: 24px; flex-wrap: wrap; }
.social-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.social-btn:hover { background: var(--grad-teal); border-color: transparent; color: #fff; transform: translateY(-3px); }

/* ---------- WhatsApp floating chat ---------- */
.wa-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 95;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #2BC35B, #1DA851); color: #fff;
  box-shadow: 0 14px 34px -10px rgba(29, 168, 81, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.wa-fab .icon { width: 29px; height: 29px; }
.wa-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(43, 195, 91, 0.4); z-index: -1;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.65); opacity: 0; } }
.wa-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px -12px rgba(29, 168, 81, 0.75); }
.wa-fab-tip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink-900); color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 15px; border-radius: 10px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.wa-fab:hover .wa-fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Blog post layout v2 (article + sidebar) ---------- */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 328px; gap: 60px; align-items: start; }
.post-main { min-width: 0; max-width: 780px; }
.post-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--header-h) + 26px); }
.side-widget {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
}
.side-widget h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; color: var(--ink-900); }
.share-row { display: flex; gap: 9px; }
.share-btn { background: var(--teal-050); border: 1px solid var(--teal-100); color: var(--teal-700); }
.share-btn:hover { background: var(--grad-teal); color: #fff; }
.side-posts { display: flex; flex-direction: column; }
.side-post { display: flex; flex-direction: column; gap: 4px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.side-post:last-child { border-bottom: none; padding-bottom: 2px; }
.side-post b { font-size: 14px; font-weight: 600; color: var(--ink-800); line-height: 1.45; transition: color .15s ease; }
.side-post:hover b { color: var(--teal-700); }
.side-post small { font-size: 12px; color: var(--ink-400); }
.side-widget-cta { background: var(--grad-deep); border-color: transparent; }
.side-widget-cta h3 { color: #fff; }
.side-widget-cta p { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; line-height: 1.6; }
.post-hero-author { display: inline-flex; align-items: center; gap: 9px; }
.post-hero-avatar {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-teal); color: #fff; font-style: normal;
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
}
.prose-inline { font-size: 16.5px; }
.prose-inline p:last-child { margin-bottom: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.16, 1, .3, 1); }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-phone span { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { transform: scale(.9); transform-origin: right center; }
}

@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .nav-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    padding: 18px 22px 28px; display: none;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 13px 16px; font-size: 16px; border-radius: 14px; }
  .dropdown {
    position: static; width: auto; opacity: 1; visibility: visible;
    border: none; box-shadow: none; padding: 0 0 4px 10px; display: none;
  }
  .dropdown::before { display: none; }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown { transform: none; }
  .nav-item.open .dropdown { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .dropdown-all { justify-content: flex-start; padding-left: 14px; }
  .nav-cta, .nav-phone { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 16px; }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 52px); }
  .hero-inner { grid-template-columns: 1fr; gap: 74px; padding-bottom: 72px; }
  .hero-sub { max-width: 640px; }
  .hero-visual { transform: none; height: 590px; max-width: 660px; margin: 0 auto; width: 100%; }
  .flagship-inner, .tech-inner, .about-grid, .faq-inner { grid-template-columns: 1fr; gap: 60px; }
  .faq-intro { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; gap: 44px; }
  .post-side { position: static; }
  .post-main { max-width: 100%; }
  .flagship-visual { order: 2; }
  .services-grid, .services-index-grid, .why-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; gap: 52px; }
  .aside-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .cta-card { padding: 52px 44px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 46px; }
  .brand-logo { height: 48px; }
  .hero-title { font-size: clamp(2.15rem, 9.4vw, 2.8rem); }
  .hero-actions .btn { width: 100%; }
  .hero-points li { border-right: none; padding-right: 0; margin-right: 14px; }
  .hero-visual { height: auto; padding: 6px 0 28px; }
  .orbit-ring, .orbit-sat, .hv-glow { display: none; }
  .app-window { position: static; width: 100%; transform: none; animation: none; margin: 0 auto; }
  .aw-body { grid-template-columns: 1fr; }
  .aw-side { display: none; }
  .hv-card { position: static; margin: 18px auto 0; width: 100%; max-width: 420px; animation: none; }
  .hv-chip { display: none; }
  .marquee { padding: 16px 0; }
  .services-grid, .services-index-grid, .why-grid, .tech-grid, .feature-grid, .mv-grid, .industries-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-fab-tip { display: none; }
  .tech-card-hero { grid-column: span 1; }
  .process-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 22px 12px 20px; }
  .cta-band { padding: 20px 0 84px; }
  .cta-card { padding: 44px 26px; border-radius: 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-mark { width: 240px; right: -70px; bottom: -80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 62px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .fv-mini { right: 8px; }
  .service-content h2::after { display: none; }
}

/* ============================================================
   Translation (Google widget) + RTL for Arabic
   ============================================================ */

/* Hide the widget host WITHOUT display:none — display:none at init can stop the
   Google widget from building its translation machinery. Keep it in the render
   tree but visually gone (1px, clipped) so the combo exists and works. */
.gt-host {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
  top: 0; left: 0; pointer-events: none;
}
/* Hide the "Translated to…" top bar + tooltip (every known variant). This is
   independent of translation — safe to hide aggressively. */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-ORHb {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
#goog-gt-tt, .goog-te-balloon-frame,
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* Google pushes the page down by setting body{top:40px}; keep it pinned to 0 */
body { top: 0 !important; position: static !important; }
/* Don't let Google restyle our own switcher labels */
.notranslate { unicode-bidi: normal; }

/* Right-to-left layout — applied when Arabic is active (html[dir="rtl"]) */
[dir="rtl"] body { direction: rtl; text-align: right; }

/* Keep brand mark, language switcher, phone numbers and CTAs reading LTR */
[dir="rtl"] .brand,
[dir="rtl"] .lang-switch,
[dir="rtl"] .nav-phone span,
[dir="rtl"] .footer-logo,
[dir="rtl"] .app-window,
[dir="rtl"] .marquee { direction: ltr; }
[dir="rtl"] .nav-phone span,
[dir="rtl"] .footer-contact-row span { unicode-bidi: plaintext; }

/* Switcher menu opens toward the inside edge in RTL */
[dir="rtl"] .lang-menu { right: auto; left: 0; }

/* Directional arrows/carets mirror */
[dir="rtl"] .icon-caret,
[dir="rtl"] .dd-icon,
[dir="rtl"] .btn .icon-sm,
[dir="rtl"] .text-link .icon,
[dir="rtl"] .service-more .icon,
[dir="rtl"] .footer-more,
[dir="rtl"] .dropdown-all .icon { }
[dir="rtl"] .btn:hover .icon-sm,
[dir="rtl"] .text-link:hover .icon,
[dir="rtl"] .service-card:hover .service-more .icon { transform: translateX(-3px); }

/* Hero feature separators flip to the other side */
[dir="rtl"] .hero-points li {
  padding-right: 0; margin-right: 0; border-right: none;
  padding-left: 22px; margin-left: 22px; border-left: 1px solid var(--line);
}
[dir="rtl"] .hero-points li:last-child { padding-left: 0; margin-left: 0; border-left: none; }

/* Prose (blog / service body): lists and quotes */
[dir="rtl"] .prose ul, [dir="rtl"] .prose ol { padding-left: 0; padding-right: 24px; }
[dir="rtl"] .prose blockquote {
  border-left: 0; border-right: 4px solid var(--teal-400);
  padding-left: 26px; padding-right: 26px;
}

/* Inline "Canada / USA" pills next to phone numbers */
[dir="rtl"] .footer-contact-row em,
[dir="rtl"] .aside-row em { margin-left: 0; margin-right: 7px; }

/* WhatsApp floating button + its tooltip move to the left edge */
[dir="rtl"] .wa-fab { right: auto; left: 26px; }
[dir="rtl"] .wa-fab-tip {
  right: auto; left: calc(100% + 14px);
  transform: translateY(-50%) translateX(-6px);
}

/* Arabic reads better with a slightly taller line and a system Arabic face */
[dir="rtl"] body,
[dir="rtl"] p, [dir="rtl"] li, [dir="rtl"] .section-lede {
  font-family: 'Segoe UI', Tahoma, 'Noto Sans Arabic', var(--font-body);
  line-height: 1.85;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: 'Segoe UI', Tahoma, 'Noto Kufi Arabic', var(--font-head);
}
