:root {
  --brand-blue: #3f51b7;
  --brand-blue-deep: #24398f;
  --brand-cyan: #25c7db;
  --brand-ink: #13305f;
  --brand-ink-soft: #4d6492;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-alt: rgba(244, 250, 255, 0.88);
  --surface-dark: #0f2450;
  --line: rgba(63, 81, 183, 0.12);
  --line-strong: rgba(63, 81, 183, 0.2);
  --shadow-soft: 0 18px 42px rgba(26, 55, 114, 0.075);
  --shadow-panel: 0 26px 72px rgba(19, 48, 95, 0.13);
  --shadow-button: 0 16px 36px rgba(63, 81, 183, 0.25);
  --brand-night-panel:
    radial-gradient(circle at 18% 18%, rgba(37, 199, 219, 0.18), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, #11275d 0%, #1f3f9f 56%, #12244f 100%);
  --brand-night-border: 1px solid rgba(255, 255, 255, 0.09);
  --brand-night-shadow: 0 24px 56px rgba(9, 25, 61, 0.32);
  --radius-xl: 15px;
  --radius-lg: 15px;
  --radius-md: 15px;
  --radius-sm: 15px;
  --container: 1840px;
  --header-container: 1840px;
  --header-height: 92px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 199, 219, 0.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(63, 81, 183, 0.14), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #eef5fb 42%, #f7fbff 100%);
  color: var(--brand-ink);
  text-align: start;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 81, 183, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 81, 183, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.6), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(37, 199, 219, 0.08), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

body.lang-ar {
  font-family: "Cairo", "Segoe UI", sans-serif;
}

body.lang-en {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
}

.site-main {
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 3rem;
}

.site-container {
  width: min(calc(100% - 1rem), var(--container));
  margin: 0 auto;
}

.content-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.content-section.section-tight {
  padding: clamp(3rem, 5vw, 4.4rem) 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
}

.section-heading.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading-copy {
  max-width: 760px;
  display: grid;
  gap: 0.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  box-shadow: 0 0 0 6px rgba(63, 81, 183, 0.08);
}

.section-title,
.display-title,
.hero-title {
  margin: 0.75rem 0 0;
  font-weight: 800;
  line-height: 1.12;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
}

.display-title,
.hero-title {
  font-size: clamp(2.05rem, 4.4vw, 4.2rem);
}

.section-title {
  font-size: clamp(1.65rem, 2.9vw, 2.65rem);
}

.section-heading-copy .section-title {
  margin: 0;
  text-wrap: balance;
}

.section-heading .section-copy {
  margin: 0;
  line-height: 1.75;
}

body.lang-ar .section-title,
body.lang-ar .display-title,
body.lang-ar .card-title,
body.lang-ar .hero-stage-copy h2 {
  letter-spacing: 0;
}

body.lang-ar .section-title,
body.lang-ar .display-title {
  line-height: 1.24;
}

body[data-page="vision-mission-values"] .content-section .section-heading .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.section-copy,
.lead-copy,
.page-copy,
.card-copy,
.muted-copy {
  color: var(--brand-ink-soft);
}

.lead-copy,
.page-copy {
  font-size: 1.04rem;
}

.muted-copy {
  font-size: 0.95rem;
}

body.lang-ar .section-copy,
body.lang-ar .lead-copy,
body.lang-ar .page-copy,
body.lang-ar .card-copy,
body.lang-ar .muted-copy {
  line-height: 1.85;
}

.panel,
.glass-panel,
.solid-panel,
.dark-panel,
.accent-panel,
.service-card,
.value-card,
.advantage-card,
.industry-card,
.package-card,
.step-card,
.contact-card,
.compare-card,
.mini-card,
.metric-card,
.focus-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.glass-panel,
.service-card,
.value-card,
.advantage-card,
.industry-card,
.package-card,
.step-card,
.contact-card,
.compare-card,
.mini-card,
.metric-card,
.focus-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.solid-panel {
  background: var(--surface-strong);
}

.dark-panel {
  background:
    linear-gradient(160deg, rgba(19, 48, 95, 0.97), rgba(33, 59, 132, 0.96)),
    linear-gradient(135deg, rgba(37, 199, 219, 0.15), transparent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-panel);
}

.accent-panel {
  background: var(--brand-night-panel);
  color: #fff;
  border: var(--brand-night-border);
  box-shadow: var(--brand-night-shadow);
}

.accent-panel::after {
  display: none;
}

.panel::after,
.glass-panel::after,
.package-card::after,
.dark-panel::after,
.accent-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(63, 81, 183, 0.08), rgba(37, 199, 219, 0.24));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-inner,
.glass-panel,
.solid-panel,
.dark-panel,
.accent-panel,
.service-card,
.value-card,
.advantage-card,
.industry-card,
.package-card,
.step-card,
.contact-card,
.compare-card,
.mini-card,
.metric-card,
.focus-card {
  padding: clamp(1.25rem, 2vw, 1.7rem);
}

.page-hero {
  padding: 2rem 0 1.5rem;
}

.page-hero-shell,
.hero-shell,
.cta-banner,
.footer-panel {
  border-radius: var(--radius-xl);
}

.page-hero-shell {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 255, 0.92));
  border: 1px solid rgba(63, 81, 183, 0.12);
  box-shadow: var(--shadow-soft);
}

.page-hero-shell .section-title {
  margin: 0 !important;
  text-wrap: balance;
}

.page-hero-shell .page-copy {
  margin: 0 !important;
  line-height: 1.75;
}

body.lang-ar .page-hero-shell .section-title {
  font-size: clamp(1.7rem, 2.85vw, 2.7rem);
  line-height: 1.28;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-ink-soft);
  font-size: 0.9rem;
}

.breadcrumbs .bi {
  font-size: 0.72rem;
  opacity: 0.72;
}

.hero-section {
  position: relative;
  padding: 2rem 0 5rem;
}

.hero-shell {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 199, 219, 0.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(63, 81, 183, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.96));
  border: 1px solid rgba(63, 81, 183, 0.12);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(1.5rem, 2.8vw, 3.25rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: none;
}

body.lang-ar .hero-title {
  font-size: clamp(2rem, 3.05vw, 3.35rem);
  max-width: none;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

body.lang-en .hero-title {
  font-size: clamp(1.95rem, 2.85vw, 3.15rem);
  max-width: none;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats .metric-card {
  min-height: 100%;
}

.metric-card strong,
.hero-stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-blue-deep);
}

.result-grid .metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}

.result-grid .metric-card strong {
  margin: 0;
}

.result-grid .metric-card .muted-copy {
  margin: 0;
  display: block;
  line-height: 1.6;
}

body.lang-ar .result-grid .metric-card strong {
  font-size: 1.45rem;
  line-height: 1.3;
}

body.lang-ar .result-grid .metric-card .muted-copy {
  line-height: 1.75;
}

.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-stage-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.45rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 199, 219, 0.18), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, #11275d 0%, #1f3f9f 56%, #12244f 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 56px rgba(9, 25, 61, 0.32);
}

.hero-stage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 95%);
  pointer-events: none;
}

.hero-stage-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.hero-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-stage-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  background: rgba(37, 199, 219, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-stage-copy {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
}

.hero-stage-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

body.lang-ar .hero-stage-copy h2 {
  line-height: 1.18;
}

.hero-stage-copy p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 44ch;
}

.hero-signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hero-signal-card {
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-signal-card small,
.tag-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-signal-card strong {
  display: block;
  margin-top: 0.55rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.hero-signal-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-kpi-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(63, 81, 183, 0.14);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-kpi-chip strong {
  display: block;
  margin: 0;
  font-size: 1.28rem;
  color: var(--brand-blue-deep);
  line-height: 1.15;
}

.hero-kpi-chip span {
  display: block;
  margin: 0;
  color: var(--brand-ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

body.lang-ar .hero-kpi-chip strong {
  line-height: 1.35;
}

body.lang-ar .hero-kpi-chip span {
  line-height: 1.7;
}

.service-grid,
.value-grid,
.advantage-grid,
.industry-grid,
.package-grid,
.step-grid,
.contact-grid,
.result-grid,
.highlight-grid,
.comparison-grid,
.family-grid {
  display: grid;
  gap: 1.2rem;
}

.service-grid,
.value-grid,
.advantage-grid,
.industry-grid,
.package-grid,
.family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid,
.contact-grid,
.highlight-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clients-section {
  padding-top: clamp(3.4rem, 6vw, 5rem);
}

.clients-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 12%, rgba(37, 199, 219, 0.16), transparent 27%),
    radial-gradient(circle at 88% 24%, rgba(63, 81, 183, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 255, 0.98));
  border: 1px solid rgba(132, 164, 214, 0.22);
  box-shadow: 0 28px 70px rgba(14, 39, 86, 0.09);
}

.clients-panel::before {
  content: "";
  position: absolute;
  inset-inline: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 199, 219, 0.5), transparent);
}

.clients-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.clients-heading .section-title {
  margin: 0;
}

.clients-heading .section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--brand-ink-soft);
  line-height: 1.8;
}

.client-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.client-proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 2.55rem;
  padding: 0.55rem 0.88rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(132, 164, 214, 0.24);
  color: var(--brand-blue-deep);
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(14, 39, 86, 0.06);
}

.client-proof-pill i {
  color: var(--brand-cyan);
  font-size: 1rem;
}

.client-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.15rem);
}

.client-logo-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
  min-height: 11rem;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(132, 164, 214, 0.22);
  box-shadow: 0 18px 42px rgba(14, 39, 86, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 199, 219, 0.32);
  box-shadow: 0 24px 54px rgba(14, 39, 86, 0.12);
}

.client-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.3rem;
  padding: 1rem;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.96)),
    radial-gradient(circle at center, rgba(37, 199, 219, 0.11), transparent 62%);
  border: 1px solid rgba(132, 164, 214, 0.16);
}

.client-logo-frame img {
  display: block;
  width: min(100%, 13.5rem);
  max-height: 4.85rem;
  object-fit: contain;
}

.client-logo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.client-logo-meta strong {
  overflow: hidden;
  color: var(--brand-ink);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-logo-meta span {
  flex: 0 0 auto;
  padding: 0.32rem 0.6rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 900;
}

@media (max-width: 1199.98px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .clients-panel {
    padding: 1.1rem;
    border-radius: 15px;
  }

  .clients-heading {
    justify-items: stretch;
    text-align: inherit;
    margin-bottom: 1.25rem;
  }

  .clients-heading .section-copy {
    max-width: none;
  }

  .client-proof-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .client-proof-row::-webkit-scrollbar {
    display: none;
  }

  .client-proof-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .client-logo-card {
    min-height: 9.4rem;
    padding: 0.72rem;
    border-radius: 15px;
  }

  .client-logo-frame {
    min-height: 5.4rem;
    padding: 0.72rem;
    border-radius: 15px;
  }

  .client-logo-frame img {
    max-height: 3.8rem;
  }

  .client-logo-meta {
    display: grid;
    justify-items: start;
    gap: 0.45rem;
  }
}

@media (max-width: 419.98px) {
  .client-logo-grid {
    grid-template-columns: 1fr;
  }
}

.service-card:hover,
.value-card:hover,
.advantage-card:hover,
.industry-card:hover,
.package-card:hover,
.contact-card:hover,
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-panel);
}

.service-card,
.value-card,
.advantage-card,
.industry-card,
.package-card,
.contact-card,
.mini-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.12), rgba(37, 199, 219, 0.18));
  color: var(--brand-blue-deep);
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(63, 81, 183, 0.08);
}

.dark-panel .card-icon,
.accent-panel .card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.card-title {
  margin: 1rem 0 0.55rem;
  font-size: clamp(1.08rem, 1.15vw, 1.22rem);
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1.32;
  text-wrap: balance;
}

body.lang-ar .card-title {
  line-height: 1.42;
}

.card-copy {
  margin: 0;
  line-height: 1.75;
}

.dark-panel .card-title,
.accent-panel .card-title {
  color: #fff;
}

.dark-panel .page-copy,
.dark-panel .card-copy,
.dark-panel li,
.accent-panel .page-copy,
.accent-panel .card-copy,
.accent-panel li {
  color: #fff;
}

.tag-list,
.chip-list,
.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.85rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.dark-panel .tag-chip,
.accent-panel .tag-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.about-preview-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: 15px;
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 199, 219, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.98));
  border: 1px solid rgba(132, 164, 214, 0.18);
  box-shadow: 0 24px 58px rgba(14, 39, 86, 0.08);
}

.about-preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas: "visual content";
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  direction: ltr;
}

.about-preview-visual,
.about-preview-content {
  min-width: 0;
}

.about-preview-visual {
  position: relative;
  grid-area: visual;
}

.about-preview-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 24px 58px rgba(14, 39, 86, 0.18);
}

.about-preview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.about-preview-overlay {
  position: absolute;
  inset-inline-end: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.22rem;
  max-width: 18rem;
  padding: 1rem 1.05rem;
  margin: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(132, 164, 214, 0.22);
  box-shadow: 0 18px 38px rgba(14, 39, 86, 0.12);
}

body.lang-ar .about-preview-overlay {
  direction: rtl;
  text-align: right;
}

body.lang-en .about-preview-overlay {
  direction: ltr;
  text-align: left;
}

.about-preview-overlay span {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.about-preview-overlay strong {
  color: var(--brand-blue-deep);
  font-size: 1.05rem;
  line-height: 1.25;
}

.about-preview-overlay small {
  color: var(--brand-ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.about-preview-content {
  display: grid;
  align-content: center;
  gap: 1rem;
  grid-area: content;
}

body.lang-ar .about-preview-content {
  direction: rtl;
  text-align: right;
}

body.lang-en .about-preview-grid {
  grid-template-areas: "content visual";
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

body.lang-en .about-preview-content {
  direction: ltr;
  text-align: left;
}

.about-preview-head {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.about-preview-title {
  margin-top: 0.65rem;
  max-width: none;
  line-height: 1.12;
  text-wrap: balance;
}

.about-preview-note {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.98rem;
  line-height: 1.8;
  min-width: 0;
}

.about-preview-summary {
  margin: 0;
  color: var(--brand-ink-soft);
  font-size: 1rem;
  line-height: 1.85;
  min-width: 0;
}

.about-preview-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
  min-width: 0;
}

.about-preview-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(132, 164, 214, 0.18);
  box-shadow: 0 14px 28px rgba(17, 41, 89, 0.05);
}

body.lang-ar .about-preview-point {
  flex-direction: row-reverse;
  text-align: right;
}

body.lang-en .about-preview-point {
  text-align: left;
}

.about-preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.12), rgba(37, 199, 219, 0.18));
  color: var(--brand-blue-deep);
  box-shadow: inset 0 0 0 1px rgba(63, 81, 183, 0.08);
}

.about-preview-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  line-height: 1;
}

.about-preview-point-copy {
  min-width: 0;
}

.about-preview-point-copy h3 {
  margin: 0;
  color: var(--brand-ink);
  font-size: 1rem;
  font-weight: 800;
}

.about-preview-point-copy p {
  margin: 0.18rem 0 0;
  color: var(--brand-ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-preview-actions {
  display: flex;
  align-items: center;
  padding-top: 0.2rem;
}

.about-preview-button {
  width: fit-content;
  padding-inline: 1.45rem;
}

@media (min-width: 1200px) {
  .about-preview-title {
    font-size: clamp(1.75rem, 1.9vw, 2.35rem);
    white-space: normal;
  }

  body.lang-en .about-preview-title {
    max-inline-size: 18ch;
  }
}

.icon-list,
.plain-list,
.package-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.icon-list li,
.plain-list li,
.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--brand-ink-soft);
}

body.lang-ar .icon-list li,
body.lang-ar .plain-list li,
body.lang-ar .package-list li {
  direction: rtl;
  text-align: right;
}

.dark-panel .icon-list li,
.dark-panel .plain-list li,
.dark-panel .package-list li,
.accent-panel .icon-list li,
.accent-panel .plain-list li,
.accent-panel .package-list li {
  color: #fff;
}

.icon-list li::before,
.package-list li::before,
.plain-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  color: var(--brand-cyan);
  font-size: 0.95rem;
  line-height: 1.35;
}

.package-card .price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.08), rgba(37, 199, 219, 0.12));
  color: var(--brand-blue-deep);
}

.price-badge strong {
  font-size: 1.5rem;
  line-height: 1;
}

.package-card.featured {
  border-color: rgba(37, 199, 219, 0.3);
  box-shadow: 0 28px 75px rgba(37, 199, 219, 0.16);
}

.compare-card {
  min-height: 100%;
}

.compare-card.dark-panel {
  background: var(--brand-night-panel);
  border: var(--brand-night-border);
  box-shadow: var(--brand-night-shadow);
}

.compare-card.dark-panel::after {
  display: none;
}

.compare-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.compare-card-header strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  gap: 0.9rem;
}

.mini-metric {
  padding: 1rem 1.1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.mini-metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-blue-deep);
  line-height: 1;
}

.mini-metric span {
  display: block;
  margin-top: 0.4rem;
  color: var(--brand-ink-soft);
  font-size: 0.88rem;
}

.cta-banner {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: var(--brand-night-panel);
  color: #fff;
  box-shadow: var(--shadow-panel);
}

.cta-banner .section-title {
  margin: 0 !important;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-banner .page-copy {
  margin: 0 !important;
  line-height: 1.75;
}

.cta-banner .cta-actions {
  margin-top: 0;
}

body.lang-ar .cta-banner .section-title {
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  line-height: 1.28;
}

.cta-banner p,
.cta-banner .muted-copy {
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn-brand-soft {
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.focus-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 255, 0.88));
}

.footer-panel {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: var(--brand-night-panel);
  border: var(--brand-night-border);
  box-shadow: var(--brand-night-shadow);
}

.site-footer {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.78fr 0.84fr 1fr;
  gap: 1.75rem;
}

.footer-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.35rem;
  padding-inline-start: 0.9rem;
  font-size: 1rem;
  font-weight: 800;
  color: #f5f8ff;
}

.footer-title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 6px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-cyan));
}

.footer-links,
.footer-contact-list {
  display: grid;
  gap: 0.95rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: rgba(231, 238, 255, 0.82);
  transition: color var(--transition);
}

.footer-links a::before {
  content: "\2190";
  font-size: 0.92em;
  opacity: 0.72;
}

body.lang-en .footer-links a::before {
  content: "\2192";
}

.footer-links a:hover,
.footer-contact-item a:hover {
  color: #8eefff;
}

.footer-brand-lockup {
  margin-bottom: 1rem;
}

.footer-brand-image {
  width: min(15rem, 100%);
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-summary {
  margin-top: 1rem;
  max-width: 31rem;
}

.footer-contact-list {
  gap: 1.15rem;
  justify-items: start;
}

html[dir="rtl"] .footer-contact-list,
body.lang-ar .footer-contact-list {
  width: 100%;
  justify-items: stretch;
  align-items: stretch;
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .footer-contact-column,
body.lang-ar .footer-contact-column {
  direction: rtl;
  text-align: right;
  justify-items: stretch;
}

html[dir="rtl"] .footer-contact-column .footer-title,
body.lang-ar .footer-contact-column .footer-title {
  margin-inline-start: auto;
}

body.lang-ar .footer-contact-list {
  justify-items: stretch;
  direction: rtl;
  text-align: right;
}

body.lang-ar .footer-contact-column {
  text-align: right;
  justify-items: stretch;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  width: fit-content;
  max-width: 100%;
}

html[dir="rtl"] .footer-contact-item,
body.lang-ar .footer-contact-item {
  width: 100%;
  direction: rtl;
  text-align: right;
  justify-content: flex-start;
}

.footer-contact-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  box-shadow: none;
  font-size: 1.25rem;
}

.footer-contact-text {
  color: rgba(231, 238, 255, 0.88);
}

.footer-contact-text-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  display: inline-block;
}

html[dir="rtl"] .footer-contact-text-ltr,
body.lang-ar .footer-contact-text-ltr {
  text-align: right;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-legal a {
  color: rgba(231, 238, 255, 0.8);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: #8eefff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(231, 238, 255, 0.7);
  font-size: 0.9rem;
}

.site-footer .page-copy {
  color: rgba(231, 238, 255, 0.82);
}

.site-footer .social-row {
  margin-top: 1.35rem;
}

.site-footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6efff;
}

.site-footer .social-link:hover {
  background: linear-gradient(135deg, var(--brand-cyan), #57a6ff);
  border-color: transparent;
  color: #0f2450;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-lockup img,
.navbar-brand img {
  width: min(11.4rem, 40vw);
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1200;
  padding: 1rem 0 0;
  transition: padding var(--transition);
}

.site-header.scrolled {
  padding-top: 0.55rem;
}

.site-header .site-container {
  width: min(calc(100% - 1rem), var(--header-container));
}

.site-header .navbar-shell {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(19, 48, 95, 0.08);
  padding: 0.9rem 1.2rem;
  transition: border-radius var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled .navbar-shell {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(19, 48, 95, 0.12);
}

.site-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1.35rem);
}

.site-header .brand-lockup {
  justify-self: start;
}

.site-header .brand-lockup img,
.site-header .navbar-brand img {
  width: min(10.4rem, 26vw);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(0.25rem, 0.45vw, 0.65rem);
  min-width: 0;
  flex: 1 1 auto;
}

.nav-item-wrap {
  position: relative;
  min-width: 0;
}

.nav-link-inline,
.nav-button-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem clamp(0.6rem, 0.7vw, 0.9rem);
  border-radius: 15px;
  color: var(--brand-ink);
  font-weight: 700;
  font-size: clamp(0.82rem, 0.76rem + 0.2vw, 0.96rem);
  line-height: 1.15;
  white-space: nowrap;
  border: none;
  background: transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

body.lang-ar .desktop-nav {
  gap: clamp(0.2rem, 0.35vw, 0.5rem);
}

body.lang-ar .nav-link-inline,
body.lang-ar .nav-button-inline {
  font-size: clamp(0.8rem, 0.74rem + 0.18vw, 0.92rem);
  font-weight: 800;
}

.nav-link-inline:hover,
.nav-button-inline:hover,
.nav-link-inline.active,
.nav-button-inline.active {
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue-deep);
}

.nav-item-wrap:hover .mega-menu,
.nav-item-wrap:focus-within .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  inset-inline-start: 0;
  width: min(540px, 75vw);
  padding: 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(63, 81, 183, 0.12);
  box-shadow: var(--shadow-panel);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mega-link {
  display: block;
  padding: 1rem;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(238, 247, 255, 0.88));
  border: 1px solid rgba(63, 81, 183, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mega-link:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 199, 219, 0.32);
  box-shadow: var(--shadow-soft);
}

.mega-link strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}

.mega-link span {
  display: block;
  margin-top: 0.4rem;
  color: var(--brand-ink-soft);
  font-size: 0.86rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  border: 1px solid rgba(63, 81, 183, 0.1);
}

.lang-button {
  min-width: 44px;
  min-height: 38px;
  border: none;
  border-radius: 15px;
  background: transparent;
  color: var(--brand-ink);
  font-weight: 800;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lang-button.active {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
  box-shadow: 0 10px 24px rgba(63, 81, 183, 0.24);
}

.btn-brand,
.btn-brand-outline,
.btn-brand-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.05rem;
  padding: 0.82rem 1.2rem;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-brand:hover,
.btn-brand-outline:hover,
.btn-brand-soft:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue) 50%, var(--brand-cyan));
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn-brand-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-blue-deep);
  border-color: rgba(63, 81, 183, 0.18);
}

.btn-brand-soft {
  background: rgba(37, 199, 219, 0.12);
  color: var(--brand-ink);
  border-color: rgba(37, 199, 219, 0.2);
}

.btn-brand.btn-sm,
.btn-brand-outline.btn-sm,
.btn-brand-soft.btn-sm {
  min-height: 2.8rem;
  padding: 0.72rem 1.1rem;
  font-size: 0.88rem;
}

.header-actions .btn-brand.btn-sm.desktop-only {
  white-space: nowrap;
}

.navbar-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue-deep);
  font-size: 1.35rem;
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(63, 81, 183, 0.08);
}

.mobile-menu .offcanvas-body {
  display: grid;
  gap: 1rem;
}

.mobile-link,
.mobile-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.05);
  font-weight: 700;
  color: var(--brand-ink);
}

body.lang-ar .mobile-link,
body.lang-ar .mobile-service-link {
  text-align: right;
}

.mobile-link.active,
.mobile-service-link.active {
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.12), rgba(37, 199, 219, 0.14));
  color: var(--brand-blue-deep);
}

.mobile-service-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.offcanvas-custom {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.98));
}

.form-card {
  padding: 1.75rem;
}

.form-label {
  color: var(--brand-blue-deep);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.form-control,
.form-select {
  min-height: 3.2rem;
  border-radius: 15px;
  border-color: rgba(63, 81, 183, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-ink);
  box-shadow: none;
}

.form-control-phone {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

.form-control-phone::placeholder {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(37, 199, 219, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(37, 199, 219, 0.14);
}

.form-status {
  margin-top: 1rem;
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.form-status.is-error {
  color: #c83f5e;
}

.chat-widget {
  position: fixed;
  inset-inline-end: 1.2rem;
  bottom: 1.2rem;
  z-index: 1600;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.chat-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue) 52%, var(--brand-cyan));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-button);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat-widget .chat-launcher {
  border-radius: 15px;
}

.chat-launcher.has-unread {
  box-shadow: 0 18px 44px rgba(19, 48, 95, 0.28);
}

.chat-launcher-badge {
  position: absolute;
  top: -0.35rem;
  inset-inline-start: -0.25rem;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 15px;
  background: #ff5a72;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(200, 63, 94, 0.22);
}

.chat-launcher:hover,
.chat-close:hover {
  transform: translateY(-2px);
}

.chat-panel {
  width: min(390px, calc(100vw - 1.5rem));
  max-height: calc(100dvh - 1.5rem);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(63, 81, 183, 0.12);
  box-shadow: 0 26px 60px rgba(19, 48, 95, 0.2);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.chat-widget .chat-panel {
  border-radius: 15px;
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: var(--brand-night-panel);
  color: #fff;
  border-bottom: var(--brand-night-border);
}

.chat-panel-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chat-panel-copy h2 {
  margin: 0.4rem 0 0;
  font-size: 1.16rem;
  font-weight: 800;
}

.chat-panel-copy p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.92rem;
}

.chat-close {
  width: 2.8rem;
  height: 2.8rem;
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.chat-reset {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.chat-reset:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.chat-panel-body {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  overflow-y: auto;
}

.chat-history-slot[hidden] {
  display: none !important;
}

.chat-history-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.06);
  border: 1px solid rgba(63, 81, 183, 0.1);
}

.chat-history-card strong {
  color: var(--brand-blue-deep);
  font-size: 1rem;
}

.chat-history-card p {
  margin: 0;
  color: var(--brand-ink-soft);
  line-height: 1.75;
}

.chat-history-preview {
  padding: 0.9rem 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-ink);
  line-height: 1.8;
  border: 1px solid rgba(63, 81, 183, 0.08);
}

.chat-history-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chat-profile-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chat-panel.has-active-thread .chat-profile-grid {
  display: none;
}

.chat-thread-shell {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: 15px;
  background: rgba(244, 248, 255, 0.92);
  border: 1px solid rgba(63, 81, 183, 0.12);
}

.chat-thread-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.chat-thread-head strong {
  color: var(--brand-blue-deep);
  font-size: 0.98rem;
  font-weight: 800;
}

.chat-status {
  min-height: 1.35rem;
  margin: 0;
  font-weight: 700;
  color: var(--brand-blue-deep);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: end;
}

.chat-status.is-error {
  color: #c83f5e;
}

.chat-stream {
  display: grid;
  gap: 0.7rem;
  min-height: 180px;
  max-height: 320px;
  overflow: auto;
  padding: 0.25rem;
  padding-inline-end: 0.35rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 81, 183, 0.08);
}

.chat-empty {
  min-height: 150px;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.06);
  color: var(--brand-ink-soft);
  line-height: 1.7;
  display: grid;
  place-items: center;
  text-align: center;
}

.chat-bubble {
  max-width: 88%;
  padding: 0.85rem 0.95rem;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(19, 48, 95, 0.08);
}

.chat-bubble.is-visitor {
  margin-inline-start: auto;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue), var(--brand-cyan));
  color: #fff;
}

.chat-bubble.is-admin {
  margin-inline-end: auto;
  background: rgba(239, 248, 255, 0.92);
  border: 1px solid rgba(63, 81, 183, 0.12);
  color: var(--brand-ink);
}

.chat-bubble.is-bot {
  background: linear-gradient(135deg, rgba(237, 248, 255, 0.96), rgba(255, 255, 255, 0.98));
  border-color: rgba(37, 199, 219, 0.24);
  box-shadow: 0 14px 30px rgba(37, 199, 219, 0.1);
}

.chat-bubble.is-bot .chat-bubble-meta strong {
  color: var(--brand-blue-deep);
}

.chat-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
}

.chat-bubble-meta span {
  opacity: 0.75;
}

.chat-bubble p {
  margin: 0;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-compose {
  display: grid;
  gap: 0.8rem;
}

.chat-thread-actions {
  display: grid;
  gap: 0.55rem;
}

.chat-thread-action-note {
  color: var(--brand-ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.chat-rating-shell[hidden] {
  display: none !important;
}

.chat-rating-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.05);
  border: 1px solid rgba(63, 81, 183, 0.1);
}

.chat-rating-card strong {
  color: var(--brand-blue-deep);
}

.chat-rating-stars,
.chat-rating-summary-stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.chat-rating-star {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(63, 81, 183, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  color: #b7c2d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-rating-star.is-active {
  color: #ffb84d;
  border-color: rgba(255, 184, 77, 0.34);
  background: rgba(255, 244, 225, 0.96);
}

.chat-rating-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chat-rating-summary-head {
  display: grid;
  gap: 0.35rem;
}

.chat-rating-summary-head span,
.chat-rating-note {
  margin: 0;
  color: var(--brand-ink-soft);
  line-height: 1.7;
}

.chat-panel.is-conversation-closed .chat-thread-shell {
  background: rgba(248, 250, 255, 0.95);
}

.chat-compose textarea.form-control {
  min-height: 104px;
}

.chat-compose-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.chat-note {
  margin: 0;
  color: var(--brand-ink-soft);
  line-height: 1.65;
  font-size: 0.88rem;
}

.landing-main {
  padding: 1rem 0 3.5rem;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0.85rem;
}

.landing-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(63, 81, 183, 0.12);
  box-shadow: 0 18px 42px rgba(19, 48, 95, 0.08);
  backdrop-filter: blur(18px);
}

.landing-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.landing-hero {
  padding: 1.4rem 0 1rem;
}

.landing-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1.5rem;
  align-items: start;
}

.landing-hero-copy,
.landing-banner-card,
.landing-promise-card,
.landing-contact-card {
  border-radius: 15px;
  padding: 1.8rem;
}

.landing-hero-copy {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(63, 81, 183, 0.1);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.landing-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto auto -4.5rem -4.5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 15px;
  background: radial-gradient(circle, rgba(37, 199, 219, 0.14), transparent 68%);
  pointer-events: none;
}

.landing-hero-head {
  display: grid;
  gap: 0.8rem;
}

.landing-hero-description {
  margin: 0;
  max-width: 40rem;
  line-height: 1.9;
}

.landing-hero-points {
  display: grid;
  gap: 0.8rem;
}

.landing-hero-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.05), rgba(37, 199, 219, 0.08));
  border: 1px solid rgba(63, 81, 183, 0.09);
}

.landing-hero-point-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(37, 199, 219, 0.16);
  color: var(--brand-blue);
  font-size: 1rem;
}

.landing-hero-point p {
  margin: 0;
  color: var(--brand-blue-deep);
  font-weight: 700;
  line-height: 1.7;
}

.landing-hero-trust {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(63, 81, 183, 0.08), rgba(37, 199, 219, 0.1));
  border: 1px solid rgba(63, 81, 183, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.landing-hero-trust strong {
  color: var(--brand-blue-deep);
  font-size: 1rem;
  font-weight: 800;
}

.landing-hero-trust p {
  margin: 0;
  color: var(--brand-ink-soft);
  line-height: 1.8;
}

.landing-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.landing-tag-list {
  margin-top: 0.35rem;
}

.landing-banner-card {
  display: grid;
  gap: 1rem;
  background: var(--brand-night-panel);
  border: var(--brand-night-border);
  box-shadow: var(--brand-night-shadow);
  color: #fff;
}

.landing-offer-card {
  align-content: start;
}

.landing-banner-eyebrow {
  margin-bottom: 0.1rem;
}

.landing-offer-head {
  display: grid;
  gap: 0.72rem;
}

.landing-offer-title {
  margin-top: 0;
}

.landing-offer-description {
  margin: 0;
  max-width: 34rem;
  line-height: 1.8;
}

.landing-banner-card .page-copy,
.landing-banner-card .card-copy,
.landing-promise-card .page-copy,
.landing-contact-card .page-copy {
  color: rgba(255, 255, 255, 0.9);
}

.landing-banner-card .card-title,
.landing-contact-card .card-title {
  color: #fff;
}

.landing-banner-grid,
.landing-banner-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.landing-offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.landing-banner-item,
.landing-banner-stats .metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.landing-banner-item {
  border-radius: 15px;
  padding: 1rem 1rem 1.05rem;
}

.landing-offer-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
  min-height: 100%;
}

.landing-offer-item .card-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.landing-offer-item .card-copy {
  margin: 0;
  line-height: 1.7;
}

.landing-banner-item .card-icon,
.landing-contact-card .card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.landing-banner-stats .metric-card strong,
.landing-banner-stats .metric-card .muted-copy {
  color: #fff;
}

.landing-banner-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.8;
}

.landing-split-grid {
  align-items: stretch;
}

.landing-promise-card {
  display: grid;
  gap: 1rem;
}

.landing-promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.landing-promise-list li {
  position: relative;
  padding-inline-start: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.landing-promise-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.2rem;
  top: 0.78rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-cyan), #8fe7f1);
  box-shadow: 0 0 0 6px rgba(37, 199, 219, 0.12);
}

.landing-form-grid {
  align-items: stretch;
}

.landing-form-card,
.landing-contact-card {
  scroll-margin-top: 7rem;
}

.landing-contact-card {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.landing-contact-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.95rem;
}

.landing-contact-badge {
  display: inline-flex;
}

.landing-contact-card .card-icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.landing-contact-copy {
  display: grid;
  gap: 0.45rem;
}

.landing-contact-copy .card-title {
  margin: 0;
}

.landing-contact-copy .page-copy {
  margin: 0;
  line-height: 1.8;
}

.landing-contact-cta {
  width: 100%;
  justify-content: center;
  min-height: 3.5rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue-deep);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 28px rgba(12, 24, 56, 0.18);
}

.landing-contact-cta:hover {
  background: #fff;
  color: var(--brand-blue-deep);
}

.landing-contact-support {
  padding: 1rem 1.05rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-contact-support .landing-promise-list {
  gap: 0.9rem;
}

.landing-contact-support .landing-promise-list li {
  font-weight: 700;
}

.landing-contact-note {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-link {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue-deep);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
}

.map-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(17, 41, 89, 0.96), rgba(41, 74, 160, 0.9)),
    radial-gradient(circle at top right, rgba(37, 199, 219, 0.18), transparent 28%);
  color: #fff;
}

.map-grid {
  position: relative;
  min-height: 160px;
  border-radius: 15px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  top: 40%;
  inset-inline-start: 56%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 15px;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 10px rgba(37, 199, 219, 0.14);
}

.map-route {
  position: absolute;
  inset: 18% 14% auto 14%;
  height: 48%;
  border-radius: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
}

.stagger.revealed > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }

.divider-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border-radius: 15px;
  background: rgba(63, 81, 183, 0.08);
  color: var(--brand-blue-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.note-box {
  padding: 1rem 1.1rem;
  border-radius: 15px;
  background: rgba(37, 199, 219, 0.1);
  border: 1px solid rgba(37, 199, 219, 0.18);
  color: var(--brand-ink);
}

.page-hero-shell,
.hero-shell,
.cta-banner,
.footer-panel,
.site-header .navbar-shell,
.site-header.scrolled .navbar-shell,
.nav-link-inline,
.nav-button-inline,
.mega-menu,
.mega-link,
.lang-switch,
.lang-button,
.btn-brand,
.btn-brand-outline,
.btn-brand-soft,
.navbar-toggle,
.mobile-link,
.mobile-service-link,
.form-control,
.form-select,
.social-link,
.map-grid,
.map-pin,
.map-route,
.divider-note,
.note-box,
.card-icon,
.tag-chip,
.package-card .price-badge,
.mini-metric,
.hero-stage-panel,
.hero-stage-badge,
.hero-stage-status,
.hero-signal-card,
.hero-kpi-chip,
.offcanvas,
.offcanvas-custom,
.btn-close,
.eyebrow::before {
  border-radius: 15px;
}

.noscript-banner {
  padding: 1rem;
  text-align: center;
  background: #fff3cd;
  color: #664d03;
  font-weight: 700;
}

@keyframes floatSoft {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1199.98px) {
  .desktop-nav,
  .header-actions .btn-brand.btn-sm.desktop-only {
    display: none;
  }

  .navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .footer-grid,
  .service-grid,
  .value-grid,
  .advantage-grid,
  .industry-grid,
  .package-grid,
  .family-grid,
  .step-grid,
  .contact-grid,
  .highlight-grid,
  .comparison-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
    gap: 1.5rem;
  }

  .about-preview-visual img {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }

  .about-preview-title {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .site-main {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .content-section {
    padding: 4.25rem 0;
  }

  .hero-shell,
  .page-hero-shell,
  .cta-banner,
  .footer-panel {
    padding: 1.6rem;
  }

  .hero-grid,
  .section-heading,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-stage-copy p {
    max-width: none;
  }

  .hero-signal-grid,
  .hero-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview-points {
    grid-template-columns: 1fr;
  }

  .landing-hero-shell,
  .landing-form-grid,
  .landing-split-grid {
    grid-template-columns: 1fr;
  }

  .landing-header-shell {
    flex-direction: row;
    align-items: center;
  }

  .landing-header-actions {
    justify-content: flex-end;
  }

  .chat-panel {
    width: min(420px, calc(100vw - 2rem));
  }

  .chat-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-container {
    width: min(calc(100% - 0.75rem), var(--container));
  }

  .site-header .site-container {
    width: min(calc(100% - 0.75rem), var(--header-container));
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .site-header .navbar-shell {
    border-radius: 15px;
    padding: 0.75rem;
  }

  .brand-lockup img,
  .navbar-brand img {
    width: 8.8rem;
  }

  .hero-shell,
  .page-hero-shell,
  .cta-banner,
  .footer-panel,
  .form-card,
  .landing-hero-copy,
  .landing-banner-card,
  .landing-promise-card,
  .landing-contact-card {
    padding: 1.25rem;
  }

  .about-preview-shell {
    padding: 1.2rem;
    border-radius: 15px;
  }

  .about-preview-visual img {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .about-preview-visual img,
  .about-preview-overlay,
  .about-preview-point,
  .about-preview-button {
    border-radius: 15px;
  }

  .about-preview-overlay {
    inset-inline-end: 1rem;
    bottom: 0.75rem;
    padding: 0.75rem;
    max-width: 14rem;
  }

  .about-preview-point {
    gap: 0.75rem;
  }

  .about-preview-button {
    width: 100%;
    justify-content: center;
  }

  .hero-stats,
  .hero-signal-grid,
  .hero-kpi-strip,
  .landing-banner-grid,
  .landing-banner-stats,
  .service-grid,
  .value-grid,
  .advantage-grid,
  .industry-grid,
  .package-grid,
  .family-grid,
  .step-grid,
  .contact-grid,
  .highlight-grid,
  .comparison-grid,
  .result-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  body.lang-ar .hero-title,
  body.lang-en .hero-title {
    max-width: none;
    font-size: clamp(1.95rem, 9.5vw, 3.1rem);
  }

  .hero-stage-panel {
    padding: 1rem;
  }

  .hero-stage-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-signal-grid,
  .hero-kpi-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage-copy h2 {
    font-size: 1.45rem;
  }

  .hero-actions,
  .cta-actions,
  .footer-bottom {
    width: 100%;
  }

  .chat-widget {
    inset-inline: 0.75rem;
    bottom: 0.75rem;
    justify-items: stretch;
  }

  .chat-panel {
    position: fixed;
    inset: calc(var(--header-height) + 0.75rem) 0.75rem 0.75rem 0.75rem;
    width: auto;
    max-height: none;
    z-index: 1601;
  }

  .chat-panel-tools,
  .chat-history-actions {
    width: 100%;
  }

  .chat-panel-tools {
    width: auto;
    justify-content: flex-end;
  }

  .chat-thread-head {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-status {
    text-align: start;
  }

  .chat-history-actions > * {
    width: 100%;
  }

  .chat-stream {
    min-height: 150px;
    max-height: min(30dvh, 260px);
  }

  .chat-compose-actions {
    flex-direction: column;
  }

  .chat-rating-actions > * {
    width: 100%;
  }

  .landing-header-actions {
    width: auto;
  }

  .landing-header-actions > *,
  .chat-compose-actions > *,
  .hero-actions > *,
  .cta-actions > * {
    flex: 1 1 100%;
  }

  .landing-contact-card .btn-brand-soft,
  .btn-brand,
  .btn-brand-outline,
  .btn-brand-soft {
    width: 100%;
  }

  .landing-header {
    top: 0.45rem;
    padding-top: 0;
  }

  .landing-header-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0.8rem;
    border-radius: 15px;
  }

  .landing-header .brand-lockup {
    order: 3;
    justify-self: end;
  }

  .landing-header .brand-lockup img {
    width: 7.6rem;
  }

  .landing-header-actions {
    display: contents;
  }

  .landing-header-actions .lang-switch {
    order: 2;
    justify-self: center;
  }

  .landing-header-actions .btn-brand-soft.btn-sm {
    order: 1;
    justify-self: start;
    width: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0;
    border-radius: 15px;
    background: rgba(63, 81, 183, 0.08);
    border: 1px solid rgba(63, 81, 183, 0.12);
    box-shadow: none;
  }

  .landing-header-actions .btn-brand-soft.btn-sm span {
    display: none;
  }

  .landing-header-actions .btn-brand-soft.btn-sm i {
    margin: 0;
    font-size: 1.05rem;
  }

  .landing-header-actions .btn-brand.btn-sm {
    display: none;
  }

  .landing-header-actions > * {
    flex: 0 0 auto;
    width: auto;
  }

  .landing-hero-copy,
  .landing-banner-card {
    gap: 1rem;
  }

  .landing-contact-head {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .landing-contact-badge {
    justify-self: start;
  }

  .landing-offer-list,
  .landing-banner-stats {
    grid-template-columns: 1fr;
  }

  .landing-hero-point,
  .landing-offer-item {
    padding: 0.85rem 0.9rem;
  }
}
