:root {
  --navy-900: #071428;
  --navy-800: #0b1a33;
  --navy-700: #10284a;

  --teal-500: #1bb7a8;
  --teal-600: #119b8c;

  --border: rgba(16, 40, 74, 0.12);
  --shadow: 0 10px 35px rgba(7, 20, 40, 0.12);
  --softShadow: 0 10px 35px rgba(7, 20, 40, 0.08);

  --radius-xl: 24px;
  --radius-2xl: 34px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f8fc;
  color: rgba(16, 40, 74, 0.85);
  font-family: Tajawal, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

:dir(rtl) body {
  font-family: Tajawal, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Hero logo -> navbar scroll move (quiet + premium) */
body.logo-at-top .tracker-logo {
  opacity: 0;
  pointer-events: none;
}
body.logo-moved .tracker-logo {
  opacity: 1;
}

#heroLogoImg {
  opacity: 1;
  transition: opacity 220ms ease;
  filter: brightness(0) invert(1);
}
body.logo-moved #heroLogoImg {
  opacity: 0;
}

.hero-logo-card {
  width: 100%;
  height: 360px;
  border-radius: 34px;
  background: rgba(7, 20, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: none;
}

.hero-logo-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}

.tracker-logo-white {
  display: block;
  width: min(250px, 72%);
  height: auto;
}

.logo-clone {
  filter: brightness(0) invert(1);
  pointer-events: none;
}

:focus-visible {
  outline: 2px solid rgba(27, 183, 168, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transform: translateY(-170%);
  transition: transform 0.2s ease;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}
.section-alt {
  background: rgba(7, 20, 40, 0.02);
}
.section-strong {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
}

/* Premium section separation */
.section + .section {
  position: relative;
}
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 40, 0),
    rgba(7, 20, 40, 0.06),
    rgba(7, 20, 40, 0)
  );
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(16, 40, 74, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand-left {
  min-width: 220px;
}
.brand-center {
  display: flex;
  justify-content: center;
  min-width: 240px;
}

.shiam-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

/* footer link behavior: keep the same "logo" look */
a.shiam-mark,
a.shiam-mark:visited {
  color: inherit;
  text-decoration: none;
}
.shiam-icon {
  height: 40px;
  width: 40px;
  border-radius: 14px;
  background: var(--navy-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.18);
  overflow: hidden;
}

.shiam-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer: show logo only (hide Shiam text) + make logo bigger */
.shiam-mark-footer {
  gap: 0 !important;
}
.shiam-mark-footer .shiam-text {
  display: none !important;
}
.shiam-mark-footer .shiam-icon {
  height: 96px !important;
  width: 96px !important;
  border-radius: 40px !important;
}
.shiam-mark-footer .shiam-icon-img {
  object-fit: contain !important;
  width: 100% !important;
  height: 100% !important;
  /* Force white logo in footer (quiet confidence on dark background) */
  filter: brightness(0) invert(1) !important;
}
.shiam-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy-800);
}
.shiam-sub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(16, 40, 74, 0.55);
  line-height: 1.2;
}

.tracker-logo {
  height: 44px;
  width: auto;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-link {
  text-decoration: none;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 850;
  font-size: 14px;
  padding: 8px 0;
}
.nav-link:hover {
  color: var(--navy-900);
}

.lang-toggle {
  display: flex;
  border-radius: 16px;
  border: 1px solid rgba(16, 40, 74, 0.12);
  padding: 4px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.lang-btn {
  cursor: pointer;
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 950;
  font-size: 13px;
  background: transparent;
  color: rgba(16, 40, 74, 0.7);
}
.lang-btn[aria-pressed="true"] {
  background: var(--navy-900);
  color: #fff;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  cursor: pointer;
  border: 1px solid rgba(16, 40, 74, 0.12);
  padding: 11px 16px;
  border-radius: 16px;
  font-weight: 950;
  font-size: 14px;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.btn:active {
  transform: translateY(1px);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 13px 18px;
  border-radius: 18px;
}

.btn-md {
  padding: 11px 16px;
  border-radius: 16px;
}

.btn-primary {
  background: var(--navy-800);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.14);
}
.btn-primary:hover {
  background: var(--navy-900);
}

.btn-outline {
  background: #fff;
  border-color: rgba(16, 40, 74, 0.16);
  color: var(--navy-900);
}
.btn-outline:hover {
  background: rgba(7, 20, 40, 0.04);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(16, 40, 74, 0.08);
}
.mobile-nav-inner {
  padding: 10px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

/* Hero */
.hero {
  position: relative;
  padding: 108px 0 92px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -220px -80px auto -80px;
  height: 560px;
  background: radial-gradient(
      circle at 25% 10%,
      rgba(27, 183, 168, 0.28),
      transparent 58%
    ),
    radial-gradient(circle at 80% 22%, rgba(27, 183, 168, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(7, 20, 40, 1), rgba(7, 20, 40, 0.96) 40%, rgba(7, 20, 40, 0) 92%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -220px -40px;
  height: 420px;
  background: radial-gradient(circle at 50% 0%, rgba(27, 183, 168, 0.22), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

:dir(rtl) .hero-grid {
  direction: rtl;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
.badge-dot {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(27, 183, 168, 0.14);
}

.hero-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 950;
  color: #fff;
  text-align: start;
}

.hero-sub {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 60ch;
  text-align: start;
  font-weight: 650;
}

.hero-secondary {
  margin: 14px 0 0;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  text-align: start;
}

.kpi-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kpi-chip {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}
.kpi-chip b {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.trust-box {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}
.trust-text {
  margin: 0;
  font-weight: 950;
  color: #fff;
}
.trust-eco {
  margin: 8px 0 0;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

/* Hero button tuning for dark surface */
.hero .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
}
.hero .btn-primary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(27, 183, 168, 0.35);
  box-shadow: 0 18px 60px rgba(27, 183, 168, 0.14);
}
.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.10);
}

.hero-ctas {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero mock */
.hero-mock {
  position: relative;
}

/* Floating KPI cards (premium visual layers) */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(220, 255, 246, 0.95);
  font-weight: 950;
  font-size: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.float-card {
  position: absolute;
  width: 220px;
  padding: 14px 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}
.float-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.float-value {
  margin-top: 8px;
  color: #fff;
  font-weight: 980;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.float-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 12px;
}
.float-1 {
  top: 36px;
  right: 18px;
}
.float-2 {
  bottom: 40px;
  left: 18px;
}
:dir(rtl) .float-1 {
  right: auto;
  left: 18px;
}
:dir(rtl) .float-2 {
  left: auto;
  right: 18px;
}

:dir(rtl) .float-pill {
  left: auto;
  right: 18px;
}
.mock-frame {
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero .mock-frame {
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  transform: translateY(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-mock:hover .mock-frame {
  transform: translateY(6px);
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.42);
}
.mock-frame::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto -40px;
  height: 180px;
  background: radial-gradient(circle at top, rgba(27, 183, 168, 0.25), transparent 60%);
  filter: blur(2px);
}

.mock-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: 0.28;
  pointer-events: none;
}

.mock-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.mock-avatar {
  height: 36px;
  width: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.mock-header-title {
  color: #fff;
  font-weight: 950;
  font-size: 14px;
}
.mock-header-sub {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
  font-size: 12px;
  margin-top: 6px;
}
.mock-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(220, 255, 246, 0.95);
  font-size: 12px;
  font-weight: 950;
  padding: 8px 10px;
  border-radius: 14px;
  white-space: nowrap;
}

.mock-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 12px;
}
.mock-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-card-title {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 10px;
}
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-row {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mock-row-name {
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 55%;
}
.mock-row-stage {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  color: rgba(118, 255, 227, 0.95);
  white-space: nowrap;
}

.mock-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-bar {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}
.mock-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mock-bar-label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 950;
  font-size: 12px;
}
.mock-bar-value {
  color: #fff;
  font-weight: 950;
  font-size: 16px;
}
.mock-bar-track {
  margin-top: 10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  width: 58%;
  border-radius: 999px;
  background: rgba(27, 183, 168, 0.85);
}

.mock-card.billing {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 26px;
}
.billing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.billing-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
  font-size: 16px;
}
.mock-exec-pill {
  width: 90px;
  height: 44px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.billing-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 10px;
}
.stat .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 950;
  font-size: 12px;
}
.stat .stat-value {
  margin-top: 6px;
  color: #fff;
  font-weight: 950;
  font-size: 22px;
}

.process-strip {
  margin-top: 14px;
  border-radius: 28px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
}

/* Keep hero lifecycle strip visually consistent (dark surface) */
.hero .process-strip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.hero .step-arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.step-pill {
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .step-pill {
  background: rgba(7, 20, 40, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
}
.step-num {
  color: rgba(123, 255, 225, 0.95);
  font-weight: 950;
  font-size: 12px;
}
.step-name {
  font-weight: 950;
  font-size: 13px;
}
.step-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 40, 74, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

:dir(rtl) .process-steps {
  flex-direction: row-reverse;
}

/* Section heads */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.eyebrow {
  color: var(--teal-600);
  font-weight: 950;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.eyebrow-strong {
  color: rgba(123, 255, 225, 0.95);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  font-weight: 950;
  color: var(--navy-900);
  text-align: start;
}
.section-title.white {
  color: #fff;
}

.section-desc {
  color: rgba(16, 40, 74, 0.72);
  margin: 0;
  max-width: 70ch;
  text-align: start;
  font-weight: 750;
  font-size: 16.5px;
  line-height: 1.8;
}
.section-desc.white {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

/* Flow rail */
.flow-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(16, 40, 74, 0.1);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.mini-title {
  font-weight: 950;
  color: var(--navy-900);
}
.mini-desc {
  margin: 10px 0 0;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 800;
}

.panel-dark {
  border-radius: 34px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel-dark-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-dark-pill {
  background: rgba(27, 183, 168, 0.12);
  border: 1px solid rgba(27, 183, 168, 0.18);
  color: rgba(123, 255, 225, 0.95);
  font-weight: 950;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 16px;
}
.panel-dark-title {
  font-weight: 950;
  font-size: 22px;
}
.panel-dark-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  font-size: 14px;
}
.stat-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.dark-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 14px;
}
.dark-stat .k {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 950;
  font-size: 12px;
}
.dark-stat .v {
  margin-top: 8px;
  color: #fff;
  font-weight: 950;
  font-size: 26px;
}

.panel-white {
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(16, 40, 74, 0.1);
  padding: 18px;
  box-shadow: var(--softShadow);
}
.panel-white-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-white-title {
  color: var(--navy-900);
  font-weight: 950;
  font-size: 18px;
}
.panel-white-tag {
  background: rgba(27, 183, 168, 0.12);
  border: 1px solid rgba(27, 183, 168, 0.16);
  color: var(--teal-600);
  font-weight: 950;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 16px;
}
.panel-white-note {
  margin-top: 16px;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 850;
}

/* Overview bullets + modules cards */
.bullet-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet {
  background: #fff;
  border: 1px solid rgba(16, 40, 74, 0.1);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.brow {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ico {
  height: 38px;
  width: 38px;
  border-radius: 16px;
  background: rgba(27, 183, 168, 0.14);
  border: 1px solid rgba(27, 183, 168, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
}
.bullet p {
  margin: 0;
  font-weight: 950;
  color: var(--navy-900);
}

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

.card {
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  border: 1px solid rgba(16, 40, 74, 0.1);
  padding: 18px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.card-ico {
  height: 46px;
  width: 46px;
  border-radius: 20px;
  background: rgba(27, 183, 168, 0.12);
  border: 1px solid rgba(27, 183, 168, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
}
.card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
  color: var(--navy-900);
}
.card p {
  margin: 10px 0 0;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 800;
  font-size: 14px;
}

/* Why + Social highlights */
.tag-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.tag {
  border-radius: 24px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.03);
  font-weight: 950;
  color: var(--navy-900);
}
.tag-grid-2 {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tag2 {
  border-radius: 24px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: rgba(7, 20, 40, 0.02);
  padding: 14px;
}
.tag2 .l {
  color: rgba(16, 40, 74, 0.6);
  font-weight: 950;
  font-size: 12px;
}
.tag2 .v {
  margin-top: 8px;
  color: var(--navy-900);
  font-weight: 950;
  font-size: 16px;
}

/* Customization section */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.custom-trust {
  margin-top: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
}
.custom-trust-text {
  margin: 0;
  font-weight: 950;
}

.mini-heading {
  color: rgba(123, 255, 225, 0.95);
  font-weight: 950;
  margin: 0 0 10px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.custom-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
}
.custom-list .chk {
  height: 38px;
  width: 38px;
  border-radius: 16px;
  background: rgba(27, 183, 168, 0.12);
  border: 1px solid rgba(27, 183, 168, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(123, 255, 225, 0.95);
}
.custom-list li p {
  margin: 0;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}
.custom-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

/* Dashboard preview blocks */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dash-block {
  border-radius: 34px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 16px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.dash-block .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dash-block .title {
  font-weight: 950;
  color: var(--navy-900);
}
.dash-block .badge {
  background: rgba(27, 183, 168, 0.12);
  border: 1px solid rgba(27, 183, 168, 0.16);
  color: var(--teal-600);
  border-radius: 18px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 12px;
}
.dash-skel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-line {
  height: 22px;
  border-radius: 999px;
  background: rgba(16, 40, 74, 0.08);
  position: relative;
  overflow: hidden;
}
.dash-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 183, 168, 0.18);
  width: 55%;
}
.dash-card {
  border-radius: 34px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  padding: 16px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
}
.dash-card .header {
  border-radius: 26px;
  padding: 10px 12px;
  background: rgba(7, 20, 40, 0.04);
  border: 1px solid rgba(16, 40, 74, 0.08);
}
.dash-card .header.teal {
  background: rgba(27, 183, 168, 0.1);
  border-color: rgba(27, 183, 168, 0.16);
}
.dash-card .header b {
  font-weight: 950;
  color: var(--navy-900);
}
.dash-card .rows {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 24px;
  background: rgba(7, 20, 40, 0.02);
  border: 1px solid rgba(16, 40, 74, 0.08);
}
.dash-row .a {
  width: 65%;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 40, 74, 0.12);
}
.dash-row .b {
  width: 90px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 183, 168, 0.25);
}

/* CLA badge */
.cla-badge {
  margin-top: 16px;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  background: #fff;
  padding: 12px;
  box-shadow: 0 10px 35px rgba(7, 20, 40, 0.04);
  min-height: 92px;
}

/* Keep the badge layout comfortable with large logo */
.cla-text {
  min-width: 0;
}
.cla-logo {
  position: static;
  width: 100%;
  height: 66px;
  border-radius: 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cla-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cla-name {
  font-weight: 950;
  color: var(--navy-900);
}
.cla-sub {
  margin-top: 8px;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 850;
  font-size: 13px;
}

/* Make the badge pure-logo (hide text) */
.cla-text,
.cla-name,
.cla-sub {
  display: none !important;
}

/* CTA */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: #fff;
  padding: 56px 0 26px;
  margin-top: 22px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-eco {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}
.footer-left {
  padding-top: 6px;
}
.shiam-mark-footer .shiam-title {
  color: #fff;
}
.shiam-mark-footer .shiam-sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col-title {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 850;
}
.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 900;
}
.contact-value {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 950;
  text-decoration: none;
}
.contact-value:hover {
  color: #fff;
}

/* Keep phone numbers readable in RTL */
#footerPhone {
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 40, 0.45);
  backdrop-filter: blur(4px);
  z-index: 2000;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  width: min(520px, calc(100% - 28px));
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(16, 40, 74, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal[hidden] {
  display: none;
}

.modal-header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(16, 40, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
}
.modal-title {
  font-size: 16px;
  font-weight: 950;
  color: var(--navy-900);
}
.modal-sub {
  margin-top: 8px;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 900;
  font-size: 13px;
}
.modal-body {
  padding: 16px 18px 18px;
  flex: 1 1 auto;
}

.modal-logo {
  display: block;
  margin: 0 0 10px;
  height: 30px;
  width: auto;
}

.icon-btn {
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(16, 40, 74, 0.12);
  border-radius: 14px;
  padding: 10px;
  color: rgba(16, 40, 74, 0.85);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-weight: 950;
  color: var(--navy-800);
  font-size: 13px;
}
input,
textarea {
  border-radius: 18px;
  border: 1px solid rgba(16, 40, 74, 0.12);
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 800;
  outline: none;
  background: #fff;
}

textarea {
  min-height: 120px;
}
input:focus,
textarea:focus {
  border-color: rgba(27, 183, 168, 0.55);
  box-shadow: 0 0 0 4px rgba(27, 183, 168, 0.14);
}
.field-error {
  color: #b00020;
  font-weight: 950;
  font-size: 12px;
  min-height: 14px;
}
.form-hint {
  margin-top: 10px;
  font-weight: 900;
  color: rgba(16, 40, 74, 0.62);
  font-size: 12px;
}
.form-message {
  margin-top: 10px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(27, 183, 168, 0.08);
  border: 1px solid rgba(27, 183, 168, 0.16);
  color: var(--teal-600);
  font-weight: 950;
}
.form-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Modal responsiveness */
@media (max-width: 980px) {
  .modal {
    width: min(560px, calc(100% - 20px));
    max-height: calc(100vh - 20px);
  }

  .modal-header,
  .modal-body {
    padding: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 620px) {
  .modal {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 14px);
    max-height: calc(100dvh - 14px);
    border-radius: 18px;
  }

  .modal-logo {
    height: 28px;
  }

  .icon-btn {
    padding: 8px;
  }

  input,
  textarea {
    font-size: 16px;
  }
}

.success-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 22px;
  border: 1px solid rgba(27, 183, 168, 0.16);
  background: rgba(27, 183, 168, 0.08);
  padding: 14px;
}
.success-icon {
  height: 44px;
  width: 44px;
  border-radius: 20px;
  background: rgba(27, 183, 168, 0.18);
  border: 1px solid rgba(27, 183, 168, 0.22);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-title {
  font-weight: 950;
  color: var(--navy-900);
}
.success-desc {
  margin-top: 8px;
  color: rgba(16, 40, 74, 0.72);
  font-weight: 850;
}

/* Premium lift + hover depth (SaaS-like cards) */
.card,
.mini-card,
.panel-white,
.panel-dark,
.tag,
.tag2,
.dash-block,
.dash-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease,
    background 0.22s ease;
}

.card:hover,
.mini-card:hover,
.panel-white:hover,
.tag:hover,
.tag2:hover,
.dash-block:hover,
.dash-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 183, 168, 0.38);
  box-shadow: 0 26px 90px rgba(7, 20, 40, 0.16);
}

.panel-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

/* Button click feedback */
.btn-press {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 14px 44px rgba(27, 183, 168, 0.18);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-floats {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .two-cards {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .header-right .cta-row {
    display: none;
  }
  .brand-left,
  .brand-center {
    min-width: auto;
  }
}

@media (max-width: 620px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Quiet Confidence Redesign (calm, clean, structured)
   Overrides prior aggressive styling.
   ========================================================= */

/* Base canvas */
body {
  background: #ffffff !important;
  color: rgba(11, 26, 51, 0.88) !important;
  line-height: 1.8 !important;
}

.container {
  width: min(1120px, calc(100% - 48px)) !important;
}

.section {
  padding: 92px 0 !important;
}

.section-alt {
  background: #f7f9fc !important;
}

.section-strong {
  background: var(--navy-900) !important;
  color: #fff !important;
}

.section + .section::before {
  opacity: 0.55 !important;
}

/* Typography: clean hierarchy */
.hero-title {
  color: #fff !important;
  font-size: clamp(40px, 4.6vw, 66px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.7 !important;
  max-width: 54ch !important;
}

.hero-secondary {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 900 !important;
  margin-top: 14px !important;
}

.section-title {
  color: var(--navy-900) !important;
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.18 !important;
}

.section-desc {
  color: rgba(11, 26, 51, 0.68) !important;
  font-weight: 750 !important;
  line-height: 1.9 !important;
  max-width: 68ch !important;
}

/* Calm hero surface */
.hero {
  background: linear-gradient(180deg, rgba(7, 20, 40, 1) 0%, rgba(7, 20, 40, 0.98) 40%, rgba(7, 20, 40, 0.92) 100%) !important;
  padding: 108px 0 96px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.hero::before,
.hero::after {
  content: "" !important;
  background: none !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

.hero-grid {
  gap: 42px !important;
  align-items: start !important;
}

.hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}

.hero .badge-dot {
  box-shadow: 0 0 0 6px rgba(27, 183, 168, 0.12) !important;
}

/* Hero mock: ONE clean preview, no chaos */
.hero-mock .mock-frame {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}

.hero-mock .mock-frame::before,
.hero-mock .mock-frame::after {
  content: "" !important;
  background: none !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

.hero-mock .mock-header {
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.hero-mock .mock-pill {
  display: none !important;
}

.hero-mock .mock-grid {
  grid-template-columns: 1fr !important;
}

.hero-mock .mock-card:not(.wide) {
  display: none !important;
}

.hero-mock .mock-card.billing {
  display: none !important;
}

.hero .process-strip {
  display: none !important;
}

/* Buttons: simple + premium feedback */
.btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease,
    background 0.15s ease !important;
}

/* Header: minimal + structured */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(6px) !important;
  border-bottom: 1px solid rgba(16, 40, 74, 0.10) !important;
}

.nav-link {
  color: rgba(11, 26, 51, 0.72) !important;
}

.nav-link:hover {
  color: var(--navy-900) !important;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.9) !important;
}

.hero .btn-primary {
  background: rgba(27, 183, 168, 0.12) !important;
  border-color: rgba(27, 183, 168, 0.35) !important;
  box-shadow: none !important;
}

.hero .btn-primary:hover {
  background: rgba(27, 183, 168, 0.18) !important;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Calm cards + subtle depth */
.card,
.mini-card,
.panel-white,
.panel-dark,
.dash-block,
.dash-card,
.tag,
.tag2 {
  border: 1px solid rgba(16, 40, 74, 0.10) !important;
  box-shadow: none !important;
  background: #fff !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}

.panel-dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800)) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.panel-dark:hover {
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.card:hover,
.mini-card:hover,
.dash-block:hover,
.dash-card:hover,
.tag:hover,
.tag2:hover,
.panel-white:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(27, 183, 168, 0.35) !important;
}

/* Reduce text visual density */
.card p {
  display: -webkit-box !important;
  line-clamp: 2 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Lighter grids: fewer columns for calm */
.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Dashboard preview: refined outline blocks */
.dash-block,
.dash-card {
  border-radius: 28px !important;
  padding: 16px !important;
  background: #ffffff !important;
}

.dash-block .badge {
  display: none !important;
}

.dash-skel .dash-line {
  background: rgba(11, 26, 51, 0.06) !important;
}

.dash-line::after {
  background: rgba(27, 183, 168, 0.18) !important;
  width: 60% !important;
}

/* Ensure dark text in white sections */
.panel-white,
.mini-card,
.dash-block,
.dash-card {
  color: rgba(11, 26, 51, 0.9) !important;
}

.panel-white-title {
  color: var(--navy-900) !important;
}

/* Sections lighter-to-darker rhythm */
#process .section-head,
#modules .section-head,
#customization .section-head,
#for .section-head {
  margin-bottom: 30px !important;
}

/* Mobile safety: extra spacing */
@media (max-width: 980px) {
  .section {
    padding: 80px 0 !important;
  }
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Customization section: light + calm containers */
#customization .custom-trust {
  background: #fff !important;
  border: 1px solid rgba(16, 40, 74, 0.10) !important;
}
#customization .custom-trust-text {
  color: rgba(11, 26, 51, 0.88) !important;
}
#customization .custom-list li {
  background: #fff !important;
  border: 1px solid rgba(16, 40, 74, 0.10) !important;
}
#customization .custom-list li p {
  color: rgba(11, 26, 51, 0.88) !important;
  font-weight: 950 !important;
}
#customization .custom-list .chk {
  background: rgba(27, 183, 168, 0.10) !important;
  border-color: rgba(27, 183, 168, 0.18) !important;
  color: rgba(27, 183, 168, 1) !important;
}
#customization .custom-note {
  color: rgba(11, 26, 51, 0.68) !important;
}

/* Process flow: make steps look like light chips */
#process .step-pill {
  background: #fff !important;
  border-color: rgba(16, 40, 74, 0.10) !important;
  color: rgba(11, 26, 51, 0.92) !important;
}
#process .step-num {
  color: rgba(27, 183, 168, 1) !important;
}
#process .step-arrow {
  background: #fff !important;
  border-color: rgba(16, 40, 74, 0.10) !important;
}

/* Trust CLA badge: remove heavy depth */
#trust .cla-badge {
  box-shadow: none !important;
  border: 1px solid rgba(16, 40, 74, 0.10) !important;
}

/* =========================================================
   Navbar + Hero micro redesign (calmer + cleaner)
   ========================================================= */

/* Navbar: reduce visual weight, more whitespace */
@media (min-width: 981px) {
  /* Wider navbar canvas */
  .site-header .container {
    width: min(1320px, calc(100% - 48px)) !important;
  }

  .site-header {
    background: transparent !important;
    border-bottom: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 60 !important;
  }

  .header-inner {
    padding: 8px 14px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(16, 40, 74, 0.10) !important;
    box-shadow: 0 16px 54px rgba(7, 20, 40, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    flex-wrap: nowrap !important;
  }

  .brand-left {
    min-width: 180px !important;
  }
  .brand-center {
    display: flex !important;
    min-width: 220px !important;
  }
  .tracker-logo {
    height: 30px !important;
  }

  .header-right {
    gap: 12px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  .nav {
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }
  .nav-link {
    padding: 7px 10px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    color: rgba(11, 26, 51, 0.72) !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
  }
  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(27, 183, 168, 0.10) !important;
    color: var(--navy-900) !important;
    outline: none !important;
  }

  /* Reduce button motion in the sticky header */
  .site-header .btn:hover {
    transform: none !important;
  }
}

.lang-toggle {
  border-radius: 999px !important;
  padding: 3px !important;
  border: 1px solid rgba(16, 40, 74, 0.10) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: none !important;
}
.lang-btn {
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-weight: 950 !important;
}

.lang-btn[aria-pressed="true"] {
  background: var(--navy-900) !important;
  color: #fff !important;
}

.lang-btn[aria-pressed="false"] {
  color: rgba(11, 26, 51, 0.72) !important;
}

/* Buttons in navbar: restrained */
.header-right .btn-md {
  padding: 9px 12px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
}
.header-right .btn-outline {
  background: rgba(255, 255, 255, 0.35) !important;
  border-color: rgba(16, 40, 74, 0.18) !important;
  box-shadow: none !important;
}
.header-right .btn-primary {
  background: rgba(7, 20, 40, 1) !important;
  box-shadow: none !important;
}
.header-right .btn-primary:hover {
  background: rgba(11, 26, 51, 1) !important;
}

.header-right .btn-outline:hover {
  background: rgba(27, 183, 168, 0.10) !important;
  border-color: rgba(27, 183, 168, 0.30) !important;
  color: var(--navy-900) !important;
}

/* Hero: quiet copy + clean preview focus */
.hero-grid {
  gap: 64px !important;
  grid-template-columns: 1.05fr 0.95fr !important;
}
.hero-content {
  max-width: 600px !important;
}
.hero-badge {
  display: none !important;
}
.hero-secondary {
  display: none !important;
}
.hero-sub {
  margin-top: 16px !important;
  max-width: 54ch !important;
  line-height: 1.75 !important;
}
.hero-ctas {
  margin-top: 26px !important;
  gap: 14px !important;
}

/* Hero mock: simple single-panel look */
.hero-mock {
  max-width: 510px !important;
}
.hero-mock .mock-frame {
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}
.hero-mock .mock-header {
  margin: 0 0 14px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  padding: 12px 12px !important;
}
.hero-mock .mock-avatar {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}
.hero-mock .mock-card.wide {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}
.hero-mock .mock-card-title {
  color: rgba(255, 255, 255, 0.78) !important;
}
.hero-mock .mock-row {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}
.hero-mock .mock-row-stage {
  background: rgba(27, 183, 168, 0.10) !important;
  border: 1px solid rgba(27, 183, 168, 0.16) !important;
  color: rgba(123, 255, 225, 0.95) !important;
}

/* Mobile: restore header space + stack hero */
@media (max-width: 980px) {
  .brand-center {
    display: flex !important;
    min-width: auto !important;
  }
  .hero-grid {
    gap: 34px !important;
    grid-template-columns: 1fr !important;
  }
  .hero-mock {
    max-width: 100% !important;
  }
}

/* Final guarantee: keep navbar visible during the whole scroll */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}

main#main {
  padding-top: 86px;
}

@media (max-width: 980px) {
  main#main {
    padding-top: 96px;
  }
}

/* Product Overview: sync mapping table (minimal, no KPI cards) */
#product #overviewStats {
  display: block !important;
  margin-top: 16px;
}

.sync-map-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.sync-map-table thead th {
  text-align: start;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 950;
  font-size: 12px;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sync-map-table tbody td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  vertical-align: top;
}

.sync-map-table tbody tr:last-child td {
  border-bottom: none;
}

.sync-left {
  width: 42%;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
  font-size: 13px;
}

.sync-right {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.6;
}

:dir(rtl) .sync-map-table thead th,
:dir(rtl) .sync-map-table tbody td {
  text-align: start;
}

/* CTA section: ensure white text + clear outline hover */
#cta {
  color: #fff !important;
}

/* Keep CTA typography white (quiet-confidence overrides are global). */
#cta .eyebrow-strong {
  color: rgba(255, 255, 255, 0.95) !important;
}
#cta .section-title,
#cta .section-title.white {
  color: #fff !important;
}
#cta .section-desc,
#cta .section-desc.white {
  color: rgba(255, 255, 255, 0.82) !important;
}
#cta .custom-note {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 850 !important;
}

/* Talk button hover should be clearly visible */
#cta .btn-outline {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

#cta .btn-outline:hover,
#cta .btn-outline:focus-visible {
  background: rgba(27, 183, 168, 0.18) !important;
  border-color: rgba(27, 183, 168, 0.55) !important;
  color: #fff !important;
}

/* =========================================================
   Responsive hardening (tablet + mobile)
   ========================================================= */

@media (max-width: 1024px) {
  .container {
    width: min(1120px, calc(100% - 32px)) !important;
  }

  .section {
    padding: 80px 0 !important;
  }
}

@media (max-width: 980px) {
  /* Fixed header: prevent content jump/overlap */
  main#main {
    padding-top: 112px;
  }

  .site-header .container {
    width: min(1120px, calc(100% - 24px)) !important;
  }

  .header-inner {
    padding: 10px 12px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .tracker-logo {
    height: 30px !important;
  }

  .header-right {
    flex: 0 0 auto !important;
    gap: 8px !important;
  }

  .lang-toggle {
    padding: 2px !important;
  }

  .lang-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  .mobile-nav-inner {
    padding: 8px 0 10px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .mobile-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-links::-webkit-scrollbar {
    display: none;
  }

  .mobile-links .nav-link {
    white-space: nowrap !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(16, 40, 74, 0.12) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  .mobile-actions {
    min-width: auto !important;
    width: auto !important;
  }

  .mobile-actions .btn {
    width: auto !important;
    white-space: nowrap !important;
    padding: 9px 12px !important;
    font-size: 12px !important;
    border-radius: 12px !important;
  }

  .hero {
    padding: 96px 0 72px !important;
  }

  .hero-logo-card {
    height: auto;
    min-height: 220px;
    padding: 20px;
  }
  .tracker-logo-white {
    width: min(220px, 74%);
  }

  .cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  /* Mobile: keep everything readable and non-overflowing */
  main#main {
    padding-top: 128px;
  }

  .header-inner {
    border-radius: 14px !important;
  }

  .mobile-nav-inner {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  .mobile-actions {
    width: 100% !important;
  }

  .mobile-actions .btn {
    width: 100% !important;
  }

  .hero-title {
    font-size: clamp(34px, 8.5vw, 44px) !important;
    line-height: 1.08 !important;
  }

  .hero-sub {
    font-size: 15.5px !important;
  }

  .grid-2,
  .custom-grid,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product overview sync table: smaller typography + more room */
  .sync-left,
  .sync-right {
    font-size: 12.5px;
  }
  .sync-left {
    width: 46%;
  }

  /* Footer: logo should not dominate small screens */
  .shiam-mark-footer .shiam-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 30px !important;
  }
}

/* =========================================================
   Responsive QA pass (site-wide + form-first)
   ========================================================= */

/* Tablet: keep content breathable and avoid edge clipping */
@media (max-width: 900px) {
  .container {
    width: min(1120px, calc(100% - 24px)) !important;
  }

  .section {
    padding: 72px 0 !important;
  }
}

/* Modal form: robust behavior on tablet/mobile */
@media (max-width: 900px) {
  .modal {
    width: calc(100% - 16px) !important;
    max-height: calc(100dvh - 16px) !important;
    border-radius: 16px !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    top: 12px !important;
    transform: translate(-50%, 0) !important;
  }

  .modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
  }

  .modal-body {
    padding: 12px !important;
    overflow: auto !important;
    flex: 1 1 auto !important;
  }

  .modal-title {
    font-size: 15px;
  }

  .modal-sub {
    font-size: 12px;
    line-height: 1.5;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .field {
    gap: 6px !important;
  }

  input,
  textarea {
    width: 100%;
    border-radius: 14px;
    padding: 11px 12px;
    box-sizing: border-box;
  }

  textarea {
    min-height: 110px;
    resize: vertical;
  }

  .form-actions {
    margin-top: 12px;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    justify-content: stretch !important;
  }

  .form-actions .btn {
    width: 100% !important;
  }
}

/* Mobile navbar polish */
@media (max-width: 620px) {
  .site-header .container {
    width: calc(100% - 14px) !important;
  }

  .header-inner {
    padding: 8px 10px !important;
    min-height: 52px;
  }

  .tracker-logo {
    height: 26px !important;
  }

  .lang-btn {
    padding: 5px 9px !important;
    font-size: 11px !important;
  }

  .mobile-links .nav-link {
    font-size: 11px !important;
    padding: 6px 9px !important;
  }
}

