:root {
  --color-bg: #f5f7fa;
  --color-bg-alt: #f8f9fb;
  --color-surface-strong: #ffffff;
  --color-text: #102321;
  --color-text-soft: #4f615d;
  --color-heading: #0b1c1a;
  --color-primary: #0e3b36;
  --color-primary-strong: #082b27;
  --color-accent: #c8a35c;
  --color-success: #1f9d62;
  --color-border: rgba(14, 59, 54, 0.14);
  --color-white: #f8f4eb;
  --shadow-sm: 0 14px 30px -24px rgba(8, 24, 21, 0.22);
  --shadow-md: 0 30px 60px -34px rgba(8, 24, 21, 0.28);
  --shadow-lg: 0 40px 80px -40px rgba(8, 24, 21, 0.34);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --font-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-ar: "Cairo", "Geist", ui-sans-serif, system-ui, sans-serif;
  --transition: 180ms ease;
  --marquee-duration: 28s;
  --client-gap: 1rem;
  --client-logo-width: 150px;
  --client-logo-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(14, 59, 54, 0.07), transparent 28%),
    radial-gradient(circle at top right, rgba(200, 163, 92, 0.12), transparent 34%),
    linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 163, 92, 0.6);
  outline-offset: 3px;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

textarea {
  resize: vertical;
}

h1,
h2,
h3,
p,
ul,
dl {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--color-white);
  background: var(--color-primary);
}

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

.container--wide {
  width: min(1320px, calc(100% - 2rem));
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.34);
}

.section--accent {
  color: var(--color-white);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 24%),
    radial-gradient(circle at bottom right, rgba(200, 163, 92, 0.22), transparent 28%),
    linear-gradient(180deg, #0a2d29, #0d3732);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-heading--light,
.section-heading--light h2,
.section-heading--light .section-heading__text {
  color: var(--color-white);
}

.section-heading__text {
  max-width: 40rem;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-primary);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(20px);
  background: rgba(245, 241, 232, 0.84);
  border-bottom: 1px solid rgba(14, 59, 54, 0.08);
}

.site-header__inner,
.site-nav,
.hero__actions,
.hero__highlights,
.hero__trust,
.support-actions,
.contact-actions,
.site-footer__bottom,
.contact-cta__actions,
.split-banner__actions {
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: normal;
  align-items: center;
  gap: 2rem;
  min-height: 5.75rem;
  padding: 0.85rem 0;
}

.nav-toggle {
  grid-column: 3;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav,
.hero__actions,
.support-actions,
.contact-actions,
.contact-cta__actions,
.split-banner__actions {
  gap: 1.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--color-text-soft);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
}

.site-nav {
  grid-column: 2;
  justify-self: center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-primary);
}

.site-nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4rem;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  justify-self: end;
  min-width: 2.8rem;
  min-height: 2.8rem;
  margin-left: 0.5rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.language-switch:hover,
.language-switch:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(14, 59, 54, 0.22);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.875rem;
  background: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(248, 244, 235, 0.12);
}

.brand__mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-heading);
}

.brand__text span {
  margin-top: 0.2rem;
  color: var(--color-text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-strong);
}

.button--secondary {
  color: var(--color-primary);
  background: rgba(14, 59, 54, 0.06);
  border-color: var(--color-border);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(14, 59, 54, 0.12);
}

.button--ghost {
  color: var(--color-heading);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(14, 59, 54, 0.12);
}

.button--block {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.3rem);
}

.hero__lead,
.page-hero p,
.support-copy p,
.contact-copy p,
.info-card p,
.service-card p,
.benefit-card p,
.support-panel p,
.site-footer__summary,
.trust-card p,
.detail-card p,
.service-detail-card p,
.content-grid p,
.split-banner p,
.contact-cta p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.card,
.info-card,
.service-card,
.benefit-card,
.trust-card,
.detail-card,
.service-detail-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.card,
.info-card,
.service-card,
.benefit-card,
.trust-card,
.detail-card,
.service-detail-card {
  padding: 1.75rem;
}

.card--glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-lg);
}

.hero {
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 7rem);
}

.hero__backdrop,
.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(14, 59, 54, 0.14), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(200, 163, 92, 0.18), transparent 24%);
}

.hero__grid,
.about-grid,
.services-grid,
.benefits-grid,
.support-grid,
.contact-grid,
.site-footer__grid,
.trust-grid,
.content-grid,
.two-column-grid,
.form-layout,
.service-detail-grid {
  display: grid;
  gap: var(--space-5);
}

.hero__grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.5rem;
}

.hero__content {
  min-width: 0;
}

.hero h1 {
  max-width: 14ch;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.hero-media {
  min-width: 0;
}

.hero-media img {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.hero__actions,
.hero__highlights,
.hero__trust {
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__highlights {
  gap: 1rem;
  margin-top: 2rem;
}

.hero__trust {
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-clients {
  margin-top: 1.9rem;
  padding: 1.5rem;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  box-shadow: var(--shadow-sm);
}

.hero-clients__intro {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.hero-clients__intro h2 {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-clients__intro p:not(.eyebrow) {
  margin-top: 0.75rem;
  color: var(--color-text-soft);
  font-size: 1rem;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.35rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  animation: client-marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-marquee__track {
  animation-play-state: paused;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(14, 59, 54, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px -28px rgba(8, 24, 21, 0.22);
  color: var(--color-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@keyframes client-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero__highlights li,
.status-pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel__header,
.support-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-list {
  display: grid;
  gap: 1rem;
}

.metric-list__item {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.metric-list__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.metric-list__label,
.trust-card__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.trust-stat {
  flex: 1 1 13rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.trust-stat strong,
.detail-card h3,
.service-detail-card h2 {
  display: block;
  color: var(--color-heading);
}

.trust-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.page-hero__content {
  position: relative;
  max-width: 54rem;
}

.page-hero__content p {
  max-width: 44rem;
}

.about-grid,
.benefits-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid,
.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid,
.contact-grid,
.content-grid,
.form-layout {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr);
  align-items: start;
}

.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card h3,
.service-card h3,
.benefit-card h3,
.trust-card h3,
.contact-panel h3,
.detail-card h3 {
  margin-bottom: 0.9rem;
  color: var(--color-heading);
  font-size: 1.3rem;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(14, 59, 54, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-detail-card--media,
.service-card--detailed {
  display: grid;
  align-content: start;
}

.service-media {
  display: grid;
  place-items: center;
  min-height: 12.5rem;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: calc(var(--radius-md) - 0.35rem);
  background:
    linear-gradient(135deg, rgba(14, 59, 54, 0.08), rgba(200, 163, 92, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

html[dir="rtl"] .service-media {
  letter-spacing: 0;
  text-transform: none;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.benefit-card h3,
.benefit-card p {
  color: var(--color-white);
}

.service-detail-list,
.support-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.service-detail-list li,
.support-list__item {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-soft);
}

.service-detail-list li::before,
.support-list__item::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--color-accent);
}

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

.support-alert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(14, 59, 54, 0.14);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
}

.support-alert strong {
  color: var(--color-heading);
}

.support-alert span {
  color: var(--color-text-soft);
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 8rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(14, 59, 54, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 59, 54, 0.08);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #c25242;
  box-shadow: 0 0 0 4px rgba(194, 82, 66, 0.08);
}

.form-note {
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.contact-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-list dt {
  margin-bottom: 0.35rem;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.contact-list dd {
  margin: 0;
  color: var(--color-heading);
  font-weight: 600;
}

.contact-cta,
.split-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.contact-cta--compact {
  margin-top: 2rem;
}

.section-cta {
  margin-top: 2rem;
}

.site-footer {
  color: var(--color-white);
  background: #081816;
}

.site-footer__grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 3.5rem 0 2rem;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text span,
.site-footer h3,
.site-footer__summary,
.footer-links a,
.site-footer__bottom {
  color: var(--color-white);
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  opacity: 0.82;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
}

.site-footer__summary {
  max-width: 24rem;
  margin-top: 1rem;
  opacity: 0.82;
}

.site-footer__bottom {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  opacity: 0.78;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 22rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-success);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
  background: #188454;
}

.whatsapp-float__icon {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 700;
}

.whatsapp-float__text {
  font-size: 0.95rem;
  font-weight: 700;
}

body {
  background:
    radial-gradient(circle at top left, rgba(14, 59, 54, 0.08), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(200, 163, 92, 0.16), transparent 24%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f7fa 48%, #eef3f8 100%);
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 253, 0.82));
}

.section-heading {
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading__text {
  font-size: 1.08rem;
  line-height: 1.8;
}

.site-header {
  background: rgba(251, 252, 254, 0.78);
  border-bottom: 1px solid rgba(14, 59, 54, 0.08);
  box-shadow: 0 20px 40px -36px rgba(8, 24, 21, 0.4);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  min-height: 6rem;
  padding: 1rem 0;
}

.site-nav {
  justify-self: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  font-size: 0.99rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active {
  text-decoration: none;
}

.language-switch {
  justify-self: end;
  min-width: 3rem;
  min-height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px -30px rgba(8, 24, 21, 0.28);
}

.brand__mark {
  box-shadow:
    inset 0 0 0 1px rgba(248, 244, 235, 0.12),
    0 22px 40px -28px rgba(8, 24, 21, 0.52);
}

.brand {
  margin-right: 0;
}

.card,
.info-card,
.service-card,
.benefit-card,
.trust-card,
.detail-card,
.service-detail-card,
.support-panel,
.contact-cta,
.split-banner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: 0 30px 70px -42px rgba(8, 24, 21, 0.26);
}

.service-card,
.trust-card,
.service-detail-card,
.support-panel,
.contact-cta,
.split-banner {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.trust-card:hover,
.service-detail-card:hover,
.support-panel:hover,
.contact-cta:hover,
.split-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 90px -50px rgba(8, 24, 21, 0.3);
  border-color: rgba(14, 59, 54, 0.18);
}

.hero {
  padding-top: clamp(6rem, 11vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.hero__backdrop,
.page-hero::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 59, 54, 0.13), transparent 20%),
    radial-gradient(circle at 85% 8%, rgba(200, 163, 92, 0.18), transparent 22%),
    radial-gradient(circle at 70% 65%, rgba(14, 59, 54, 0.06), transparent 24%);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(25rem, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content {
  max-width: 38rem;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 1;
}

.hero__lead {
  max-width: 34rem;
  margin-top: 1.35rem;
  font-size: 1.12rem;
  line-height: 1.85;
}

.hero-media {
  position: relative;
  min-width: 0;
  padding: clamp(0.75rem, 1.6vw, 1rem);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 2rem;
  pointer-events: none;
}

.hero-media::before {
  inset: 6% 8% auto auto;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(200, 163, 92, 0.28), transparent 70%);
}

.hero-media::after {
  inset: auto auto 4% 4%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(14, 59, 54, 0.16), transparent 72%);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
  min-height: clamp(22rem, 38vw, 35rem);
  margin-left: auto;
  border-radius: calc(var(--radius-lg) + 0.35rem);
  box-shadow: 0 50px 120px -58px rgba(8, 24, 21, 0.48);
  object-fit: contain;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  min-width: 12rem;
  max-width: 14rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 60px -38px rgba(8, 24, 21, 0.38);
  backdrop-filter: blur(10px);
  animation: hero-card-float 7s ease-in-out infinite;
}

.hero-float-card strong {
  color: var(--color-heading);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-float-card__eyebrow {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float-card--top {
  top: 5%;
  left: -2%;
}

.hero-float-card--middle {
  top: 38%;
  right: -4%;
  animation-delay: 1.2s;
}

.hero-float-card--bottom {
  bottom: 8%;
  left: 4%;
  animation-delay: 2.2s;
}

.hero-clients {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: calc(var(--radius-lg) + 0.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 252, 0.88));
  box-shadow: 0 36px 90px -56px rgba(8, 24, 21, 0.32);
}

.section--clients {
  padding-top: 0;
  padding-bottom: clamp(4.5rem, 8vw, 6rem);
}

.hero-clients__intro {
  display: grid;
  gap: 0.65rem;
  max-width: 52rem;
  margin-bottom: 1.6rem;
}

.hero-clients__intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.hero-clients__intro p:not(.eyebrow) {
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.client-marquee {
  padding: 0.25rem 0;
}

.client-marquee--cards {
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-marquee__track {
  gap: 1.35rem;
  animation-duration: var(--marquee-duration);
}

.client-card {
  display: grid;
  gap: 0.9rem;
  flex: 0 0 16.5rem;
  width: 16.5rem;
  padding: 1rem;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.88));
  box-shadow: 0 24px 46px -34px rgba(8, 24, 21, 0.26);
}

.client-card__media {
  aspect-ratio: 16 / 11;
  border-radius: 1.1rem;
  background-color: #eef3f8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.client-card__label {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 700;
}

.client-card--retail .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.18), rgba(14, 59, 54, 0.03)),
    url("../assets/index.jpg");
}

.client-card--restaurant .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(200, 163, 92, 0.22), rgba(14, 59, 54, 0.04)),
    url("../assets/restaurant.jpeg");
}

.client-card--pharmacy .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.16), rgba(255, 255, 255, 0.08)),
    url("../assets/pharmacy.jpeg");
}

.client-card--supermarket .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(200, 163, 92, 0.18), rgba(255, 255, 255, 0.08)),
    url("../assets/index.jpg");
}

.client-card--bakery .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.14), rgba(200, 163, 92, 0.14)),
    url("../assets/bakery.jpeg");
}

.client-card--clinic .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.16), rgba(200, 163, 92, 0.1)),
    url("../assets/pharmacy.jpeg");
}

.page-hero {
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.page-hero__content {
  max-width: 62rem;
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid rgba(14, 59, 54, 0.09);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 252, 0.84));
  box-shadow: 0 30px 90px -56px rgba(8, 24, 21, 0.28);
}

.page-hero__content p {
  max-width: 48rem;
}

.service-card,
.service-detail-card,
.support-panel,
.trust-card {
  overflow: hidden;
}

.service-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, rgba(14, 59, 54, 0.12), rgba(200, 163, 92, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.service-media {
  position: relative;
  place-items: end start;
  min-height: 14.5rem;
  margin-bottom: 1.35rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(14, 59, 54, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(14, 59, 54, 0.3)),
    linear-gradient(135deg, rgba(14, 59, 54, 0.08), rgba(200, 163, 92, 0.18));
  color: #ffffff;
  font-size: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.4)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.service-media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: rgba(236, 245, 242, 0.9);
}

.service-media > * ,
.service-media {
  position: relative;
  z-index: 1;
}

.service-media--pharmacy {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/pharmacy.jpeg");
}

.service-media--supermarket {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/index.jpg");
}

.service-media--bakery {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/bakery.jpeg");
}

.service-media--restaurant {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/restaurant.jpeg");
}

.service-media--hardware {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/hardware.jpeg");
}

.service-media--network {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/network.jpeg");
}

.service-media--cctv {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/camera.jpeg");
}

.service-detail-list {
  gap: 0.85rem;
}

.service-detail-list li,
.support-list__item {
  line-height: 1.75;
}

.support-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 1.05fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: stretch;
}

.support-copy,
.support-panel {
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  border-radius: calc(var(--radius-lg) - 0.2rem);
}

.support-copy {
  border: 1px solid rgba(14, 59, 54, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 253, 0.8));
  box-shadow: 0 24px 80px -50px rgba(8, 24, 21, 0.22);
}

.support-panel {
  position: sticky;
  top: 7.5rem;
}

.support-form {
  gap: 1.1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 3.25rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.form-field textarea {
  min-height: 8.8rem;
}

.contact-cta,
.split-banner {
  padding: clamp(1.8rem, 2.8vw, 2.5rem);
  border-radius: calc(var(--radius-lg) - 0.15rem);
}

.contact-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 252, 0.86));
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Premium SaaS polish overrides */
.site-header__inner {
  gap: 2.75rem;
  min-height: 6rem;
  padding: 1rem 0;
}

.brand {
  margin-right: 0;
  justify-self: start;
}

.site-nav {
  margin-left: 0;
  justify-self: center;
  gap: 1.85rem;
}

.language-switch {
  margin-left: 0;
}

.section {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

.section-heading__text {
  font-size: 1.06rem;
  line-height: 1.82;
}

.button {
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
}

.card,
.info-card,
.service-card,
.benefit-card,
.trust-card,
.detail-card,
.service-detail-card,
.support-panel,
.contact-cta,
.split-banner {
  box-shadow: 0 30px 72px -44px rgba(8, 24, 21, 0.24);
}

.service-card:hover,
.trust-card:hover,
.service-detail-card:hover,
.support-panel:hover,
.contact-cta:hover,
.split-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 94px -52px rgba(8, 24, 21, 0.28);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
  gap: clamp(2.4rem, 5vw, 5.5rem);
}

.hero__content {
  max-width: 36.5rem;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 5.1vw, 5.25rem);
  line-height: 0.98;
}

.hero__lead {
  max-width: 35rem;
  margin-top: 1.45rem;
  font-size: 1.08rem;
}

.hero-media {
  align-self: center;
}

.hero-media img {
  max-width: 43rem;
  min-height: clamp(24rem, 38vw, 35rem);
  border-radius: calc(var(--radius-xl) - 0.1rem);
  box-shadow: 0 52px 120px -58px rgba(8, 24, 21, 0.48);
}

.hero-float-card {
  min-width: 11.5rem;
  max-width: 13rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1.2rem;
  box-shadow: 0 26px 58px -38px rgba(8, 24, 21, 0.3);
}

.hero-float-card strong {
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-float-card--top {
  top: 5.5%;
  left: 1%;
}

.hero-float-card--middle {
  top: 34%;
  right: 1.5%;
}

.hero-float-card--bottom {
  bottom: 6%;
  left: 2.5%;
}

.hero-clients {
  padding: clamp(1.55rem, 2vw, 2rem);
  border-radius: calc(var(--radius-lg) + 0.15rem);
  box-shadow: 0 34px 88px -56px rgba(8, 24, 21, 0.28);
}

.hero-clients__intro {
  margin-bottom: 1.75rem;
}

.client-marquee {
  padding: 0.45rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-marquee__track {
  gap: 1.5rem;
  animation-duration: var(--marquee-duration);
}

.client-card {
  gap: 0.8rem;
  flex-basis: 16.5rem;
  width: 16.5rem;
  box-shadow: 0 22px 44px -34px rgba(8, 24, 21, 0.22);
}

.client-card__media {
  aspect-ratio: 16 / 11;
}

.service-card,
.service-detail-card,
.support-panel,
.trust-card {
  height: 100%;
}

.service-media {
  min-height: 15rem;
}

.service-detail-list li,
.support-list__item {
  line-height: 1.8;
}

.support-panel {
  box-shadow: 0 30px 72px -44px rgba(8, 24, 21, 0.24);
}

.support-form {
  gap: 1.05rem;
}

.form-field {
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.93rem;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 1rem;
}

.contact-cta,
.split-banner {
  padding: clamp(1.9rem, 2.6vw, 2.4rem);
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  font-family: var(--font-ar);
  text-align: right;
  line-height: 1.85;
}

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] dd,
html[dir="rtl"] .section-heading__text,
html[dir="rtl"] .hero__lead,
html[dir="rtl"] .page-hero p,
html[dir="rtl"] .support-copy p,
html[dir="rtl"] .contact-copy p,
html[dir="rtl"] .info-card p,
html[dir="rtl"] .service-card p,
html[dir="rtl"] .benefit-card p,
html[dir="rtl"] .support-panel p,
html[dir="rtl"] .trust-card p,
html[dir="rtl"] .detail-card p,
html[dir="rtl"] .service-detail-card p,
html[dir="rtl"] .content-grid p,
html[dir="rtl"] .split-banner p,
html[dir="rtl"] .contact-cta p,
html[dir="rtl"] .site-footer__summary {
  line-height: 1.9;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  font-weight: 700;
}

html[dir="rtl"] .brand__text strong,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .page-hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .support-copy h2,
html[dir="rtl"] .contact-copy h2,
html[dir="rtl"] .contact-cta h2,
html[dir="rtl"] .split-banner h2,
html[dir="rtl"] .content-grid h2 {
  font-family: var(--font-ar);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

html[dir="rtl"] .info-card h3,
html[dir="rtl"] .service-card h3,
html[dir="rtl"] .benefit-card h3,
html[dir="rtl"] .trust-card h3,
html[dir="rtl"] .contact-panel h3,
html[dir="rtl"] .detail-card h3,
html[dir="rtl"] .service-detail-card h2,
html[dir="rtl"] .site-footer h3 {
  font-family: var(--font-ar);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

html[dir="rtl"] .hero__content,
html[dir="rtl"] .page-hero__content,
html[dir="rtl"] .support-copy,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .info-card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .benefit-card,
html[dir="rtl"] .trust-card,
html[dir="rtl"] .detail-card,
html[dir="rtl"] .service-detail-card,
html[dir="rtl"] .contact-panel,
html[dir="rtl"] .support-panel {
  text-align: right;
}

html[dir="rtl"] .hero__highlights li,
html[dir="rtl"] .status-pill,
html[dir="rtl"] .button,
html[dir="rtl"] .language-switch {
  font-weight: 700;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero__actions,
html[dir="rtl"] .hero__highlights,
html[dir="rtl"] .hero__trust,
html[dir="rtl"] .support-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .site-footer__bottom,
html[dir="rtl"] .contact-cta__actions,
html[dir="rtl"] .split-banner__actions,
html[dir="rtl"] .hero-panel__header,
html[dir="rtl"] .support-panel__top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav a.is-active {
  text-underline-offset: 0.35rem;
}

html[dir="rtl"] .brand {
  margin-right: 0;
  margin-left: 0;
}

html[dir="rtl"] .language-switch {
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .site-nav {
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .hero-media img {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .hero__content {
  grid-column: 2;
}

html[dir="rtl"] .hero-media {
  grid-column: 1;
}

html[dir="rtl"] .hero-float-card {
  text-align: right;
}

html[dir="rtl"] .hero-float-card--top {
  left: auto;
  right: 1%;
}

html[dir="rtl"] .hero-float-card--middle {
  right: auto;
  left: 1.5%;
}

html[dir="rtl"] .hero-float-card--bottom {
  left: auto;
  right: 2.5%;
}

html[dir="rtl"] .form-field label,
html[dir="rtl"] .form-field input,
html[dir="rtl"] .form-field select,
html[dir="rtl"] .form-field textarea {
  text-align: right;
}

html[dir="rtl"] .client-card,
html[dir="rtl"] .hero-clients__intro {
  text-align: right;
}

html[dir="rtl"] .service-detail-list li,
html[dir="rtl"] .support-list__item {
  padding-left: 0;
  padding-right: 1.1rem;
}

html[dir="rtl"] .service-detail-list li::before,
html[dir="rtl"] .support-list__item::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .support-alert {
  border-left: 1px solid rgba(14, 59, 54, 0.14);
  border-right: 4px solid var(--color-accent);
}

html[dir="rtl"] .hero-clients__intro h2 {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

html[dir="rtl"] .client-marquee__track {
  animation-direction: reverse;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 1rem;
}

html[dir="rtl"] .toast {
  right: auto;
  left: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .section-heading,
  .hero__grid,
  .support-grid,
  .contact-grid,
  .site-footer__grid,
  .content-grid,
  .form-layout,
  .contact-cta,
  .split-banner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .benefits-grid,
  .services-grid,
  .trust-grid,
  .two-column-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    justify-self: stretch;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(250, 247, 240, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.35rem 0;
  }

  .hero-media img {
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
  }

  .hero-float-card {
    max-width: 11rem;
  }

  .support-panel {
    position: static;
  }

  html[dir="rtl"] .hero__content,
  html[dir="rtl"] .hero-media {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    padding: 0.85rem 0;
    align-items: center;
  }

  .language-switch {
    margin-left: 0;
  }

  .about-grid,
  .benefits-grid,
  .services-grid,
  .trust-grid,
  .two-column-grid,
  .support-form,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .support-copy h2,
  .contact-copy h2,
  .contact-cta h2,
  .split-banner h2,
  .content-grid h2 {
    letter-spacing: -0.03em;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__lead,
  .hero-clients__intro p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__grid {
    gap: 1.5rem;
  }

  .hero-media {
    padding-top: 1rem;
  }

  .hero-float-card {
    position: static;
    max-width: none;
    min-width: 0;
    margin-top: 0.85rem;
    animation: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: clamp(3.75rem, 7vw, 5rem) 0;
  }

  .card,
  .info-card,
  .service-card,
  .benefit-card,
  .trust-card,
  .detail-card,
  .service-detail-card,
  .contact-cta,
  .split-banner {
    padding: 1.35rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 5.25rem;
    padding: 0.85rem 0.95rem;
  }

  html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 0.75rem;
  }

  .whatsapp-float__text {
    display: none;
  }

  .hero-clients {
    margin-top: 1rem;
    padding: 1.1rem;
  }

  .client-card {
    flex-basis: 12rem;
    width: 12rem;
    padding: 0.8rem;
  }

  .client-card__label {
    font-size: 0.94rem;
  }

  .client-card__media {
    border-radius: 0.95rem;
  }

  .client-marquee__track {
    gap: 1rem;
  }

  .support-actions,
  .contact-actions,
  .contact-cta__actions,
  .split-banner__actions {
    gap: 0.85rem;
  }

  .support-actions .button,
  .contact-actions .button,
  .contact-cta__actions .button,
  .split-banner__actions .button {
    width: 100%;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}

/* Premium SaaS visual upgrade */
:root {
  --shadow-soft: 0 20px 55px -38px rgba(8, 24, 21, 0.18);
  --shadow-premium: 0 35px 90px -50px rgba(8, 24, 21, 0.28);
  --shadow-premium-hover: 0 42px 105px -52px rgba(8, 24, 21, 0.34);
  --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 253, 0.74));
  --panel-border: 1px solid rgba(14, 59, 54, 0.1);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 59, 54, 0.11), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(200, 163, 92, 0.15), transparent 22%),
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f7fa 48%, #edf2f7 100%);
}

.site-header {
  top: 0.9rem;
  width: min(calc(100% - 2rem), 1320px);
  margin: 0 auto;
  border: var(--panel-border);
  border-radius: 1.25rem;
  background: rgba(251, 252, 254, 0.76);
  box-shadow: var(--shadow-soft);
}

.site-header#top {
  left: 0;
  right: 0;
}

.site-header__inner {
  gap: 1.35rem;
  min-height: 4rem;
  padding: 0.45rem 0.95rem;
}

.brand {
  gap: 0.72rem;
}

.brand__mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
}

.brand__text strong {
  font-size: 1.3rem;
}

.brand__text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.site-nav {
  gap: 0.3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav a {
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  font-size: 0.92rem;
  line-height: 1;
}

.site-nav a::after {
  display: none;
}

.site-nav a.is-active {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), #17504a);
  box-shadow: 0 14px 30px -20px rgba(14, 59, 54, 0.55);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(14, 59, 54, 0.06);
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
  background: linear-gradient(135deg, var(--color-primary), #17504a);
}

.language-switch,
.nav-toggle {
  min-width: 2.55rem;
  min-height: 2.55rem;
  border-color: rgba(14, 59, 54, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero {
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.65;
  animation: ambient-drift 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::before {
  top: 8%;
  right: 8%;
  width: 16rem;
  height: 16rem;
  background: rgba(200, 163, 92, 0.18);
}

.hero::after {
  left: 6%;
  bottom: 8%;
  width: 14rem;
  height: 14rem;
  background: rgba(14, 59, 54, 0.12);
  animation-delay: 2s;
}

.hero__grid {
  align-items: center;
  gap: clamp(2.6rem, 5.5vw, 6rem);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 34rem;
  color: #48615d;
  font-size: 1.05rem;
  line-height: 1.86;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-trust-pill {
  display: grid;
  gap: 0.2rem;
  min-width: 11.5rem;
  padding: 0.9rem 1rem;
  border: var(--panel-border);
  border-radius: 1.1rem;
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft);
  animation: reveal-float 6s ease-in-out infinite;
}

.hero-trust-pill:nth-child(2) {
  animation-delay: 1s;
}

.hero-trust-pill:nth-child(3) {
  animation-delay: 2s;
}

.hero-trust-pill strong {
  color: var(--color-heading);
  font-size: 0.95rem;
}

.hero-trust-pill span {
  color: var(--color-text-soft);
  font-size: 0.84rem;
}

.hero-media {
  padding: 1rem;
}

.hero-media img {
  width: 100%;
  max-width: 42rem;
  min-height: clamp(24rem, 36vw, 34rem);
  border-radius: 2rem;
  box-shadow: var(--shadow-premium);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hero-media:hover img {
  transform: scale(1.018);
  box-shadow: var(--shadow-premium-hover);
}

.hero-float-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 253, 0.84));
  border: 1px solid rgba(14, 59, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-float-card--top {
  top: 6%;
  left: 2%;
}

.hero-float-card--middle {
  top: 30%;
  right: 1.5%;
}

.hero-float-card--bottom {
  bottom: 5%;
  left: 4%;
}

.section--clients {
  padding-top: 1rem;
}

.hero-clients {
  position: relative;
  overflow: hidden;
}

.hero-clients::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 59, 54, 0.12), transparent);
}

.client-marquee__track {
  animation-timing-function: linear;
}

.client-card {
  border-radius: 1.55rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(14, 59, 54, 0.16);
}

.client-card__media {
  overflow: hidden;
}

.services-grid,
.trust-grid,
.two-column-grid,
.service-detail-grid {
  align-items: stretch;
}

.service-card,
.trust-card,
.detail-card,
.service-detail-card,
.contact-panel,
.support-copy,
.support-panel,
.contact-cta,
.split-banner,
.page-hero__content {
  border: var(--panel-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-soft);
}

.service-card,
.trust-card,
.detail-card,
.service-detail-card,
.contact-panel,
.support-panel,
.page-hero__content {
  backdrop-filter: blur(8px);
}

.service-card,
.service-detail-card,
.trust-card,
.detail-card,
.contact-panel {
  height: 100%;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.service-card p,
.service-detail-card p,
.trust-card p,
.detail-card p {
  line-height: 1.8;
}

.service-media {
  min-height: 15.5rem;
  border-radius: 1.35rem;
}

.service-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.15rem;
}

.support-grid,
.contact-grid,
.form-layout {
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.support-copy,
.support-panel,
.contact-panel,
.contact-cta,
.split-banner {
  border-radius: 1.7rem;
}

.support-alert {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 253, 0.8));
}

.support-form {
  gap: 1.05rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-color: rgba(14, 59, 54, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 253, 0.92));
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(14, 59, 54, 0.2);
}

.contact-list div {
  padding: 1rem 0 0;
}

.page-hero__content {
  position: relative;
  overflow: hidden;
}

.page-hero__content::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 163, 92, 0.18), transparent 70%);
  pointer-events: none;
}

body[data-page="about"] .page-hero__content,
body[data-page="contact"] .page-hero__content {
  max-width: 58rem;
}

body[data-page="services"] .page-hero__content {
  max-width: 64rem;
}

body[data-page="support"] .page-hero__content {
  max-width: 60rem;
  border-color: rgba(14, 59, 54, 0.12);
}

body[data-page="about"] .trust-grid:first-of-type .trust-card,
body[data-page="contact"] .trust-grid .trust-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.84));
}

html[dir="rtl"] .hero-trust-row {
  justify-content: flex-start;
}

html[dir="rtl"] .hero-trust-pill,
html[dir="rtl"] .client-card,
html[dir="rtl"] .hero-float-card {
  text-align: right;
}

html[dir="rtl"] .hero-float-card--top {
  right: 2%;
  left: auto;
}

html[dir="rtl"] .hero-float-card--middle {
  left: 1.5%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--bottom {
  right: 4%;
  left: auto;
}

html[dir="rtl"] .page-hero__content::after {
  left: -3rem;
  right: auto;
}

@keyframes ambient-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(10px, -12px, 0) scale(1.04);
  }
}

@keyframes reveal-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    width: min(calc(100% - 1.5rem), 1320px);
    top: 0.65rem;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .site-nav {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(251, 252, 254, 0.98);
  }

  .hero {
    padding-top: clamp(7rem, 12vw, 8.5rem);
  }

  .hero__grid {
    gap: 2rem;
  }

  .hero-media {
    max-width: 42rem;
    margin: 0 auto;
  }

  .hero-float-card {
    max-width: 10.5rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 1rem);
    top: 0.5rem;
    border-radius: 1.2rem;
  }

  .site-header__inner {
    min-height: 3.9rem;
    padding: 0.45rem 0.7rem;
  }

  .brand__mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand__text strong {
    font-size: 1.15rem;
  }

  .brand__text span {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 6.8rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust-pill {
    min-width: 0;
  }

  .hero-media {
    padding: 0.4rem 0 0;
  }

  .hero-media img {
    min-height: 0;
    border-radius: 1.5rem;
  }

  .hero-float-card {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .section--clients {
    padding-top: 0.5rem;
  }

  .hero-clients {
    border-radius: 1.35rem;
  }

  .client-card {
    flex-basis: 11.5rem;
    width: 11.5rem;
  }

  .service-media {
    min-height: 13rem;
  }

  .page-hero__content,
  .support-copy,
  .support-panel,
  .contact-panel,
  .contact-cta,
  .split-banner {
    border-radius: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

/* Final premium proportion and hierarchy balancing pass */
:root {
  --container: 1100px;
}

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

.container--wide {
  width: min(1240px, calc(100% - 2.4rem));
}

.section {
  padding: clamp(3.8rem, 7.2vw, 5.8rem) 0;
}

.page-hero {
  padding-top: clamp(4.8rem, 7.6vw, 6.2rem);
  padding-bottom: clamp(3.1rem, 5.2vw, 4.4rem);
}

.site-header {
  width: min(calc(100% - 1.3rem), 1320px);
  background: linear-gradient(
    180deg,
    rgba(248, 252, 250, 0.86),
    rgba(242, 248, 245, 0.78)
  );
  border: 1px solid rgba(14, 59, 54, 0.1);
  box-shadow:
    0 18px 40px -30px rgba(7, 24, 22, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
}

.site-header__inner {
  min-height: 4.6rem;
  padding: 0.34rem 1.12rem;
  gap: 1.45rem;
}

.brand {
  gap: 1.08rem;
}

.brand__mark {
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 1rem;
}

.brand__mark img {
  width: 2.2rem;
  height: 2.2rem;
}

.brand__text strong {
  font-size: 1.86rem;
  letter-spacing: -0.015em;
}

.brand__text span {
  font-size: 0.8rem;
}

.site-nav {
  gap: 0.72rem;
}

.site-nav a {
  min-height: 2.7rem;
  padding: 0.68rem 1.08rem;
  font-size: 0.96rem;
}

.hero {
  padding-top: clamp(6rem, 9.2vw, 7.7rem);
  padding-bottom: clamp(2.9rem, 4.7vw, 4rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(31rem, 1.04fr);
  gap: clamp(1.8rem, 3.7vw, 3.4rem);
}

.hero__content {
  max-width: 36.5rem;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 4.25vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -0.034em;
}

.hero__lead {
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.72;
  margin-top: 0.98rem;
  max-width: 42ch;
}

.page-hero__content p:not(.eyebrow),
.section-heading__text,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p,
.contact-cta p,
.split-banner p {
  font-size: clamp(0.96rem, 1.02vw, 1.02rem);
  line-height: 1.72;
}

.hero-scene {
  min-height: clamp(28rem, 40vw, 37rem);
}

.hero-media img {
  min-height: clamp(26rem, 37vw, 33rem);
  max-height: 36rem;
}

.hero__actions {
  margin-top: 1.15rem;
}

.hero-trust-row {
  margin-top: 1.08rem;
  gap: 0.72rem;
}

.hero-trust-pill {
  padding: 0.76rem 0.92rem;
}

.page-hero h1,
.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  line-height: 1.07;
}

@media (max-width: 1080px) {
  .container,
  .container--wide {
    width: min(var(--container), calc(100% - 1.8rem));
  }

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

  .site-header__inner {
    gap: 0.8rem;
    padding: 0.32rem 0.8rem;
  }

  .brand__mark {
    width: 3.15rem;
    height: 3.15rem;
  }

  .brand__mark img {
    width: 1.96rem;
    height: 1.96rem;
  }

  .brand__text strong {
    font-size: 1.62rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  }

  .hero-scene {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container,
  .container--wide {
    width: calc(100% - 1.1rem);
  }

  .site-header {
    width: calc(100% - 0.8rem);
    top: 0.42rem;
  }

  .site-header__inner {
    min-height: 3.46rem;
    padding: 0.24rem 0.62rem;
  }

  .brand__mark {
    width: 2.72rem;
    height: 2.72rem;
  }

  .brand__mark img {
    width: 1.72rem;
    height: 1.72rem;
  }

  .brand__text strong {
    font-size: 1.34rem;
  }

  .brand__text span {
    font-size: 0.68rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 7.4vw, 2.9rem);
    line-height: 1.04;
  }

  .hero__lead,
  .page-hero__content p:not(.eyebrow),
  .section-heading__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .section {
    padding: 3.2rem 0;
  }
}

/* Navbar compact premium refinement (latest) */
.site-header {
  width: min(calc(100% - 1.1rem), 1320px);
  border-radius: 999px;
  box-shadow: 0 14px 30px -24px rgba(7, 24, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.site-header__inner {
  min-height: 4.05rem;
  padding: 0.16rem 0.94rem;
  gap: 1.12rem;
  align-items: center;
}

.brand {
  gap: 1.18rem;
}

.brand__mark {
  width: 3.95rem;
  height: 3.95rem;
  border-radius: 1.02rem;
}

.brand__mark img {
  width: 2.44rem;
  height: 2.44rem;
}

.brand__text strong {
  font-size: 2.08rem;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.brand__text span {
  font-size: 0.83rem;
}

.site-nav {
  gap: 0.96rem;
  padding-inline-start: 0.95rem;
  border-inline-start: 1px solid rgba(14, 59, 54, 0.13);
}

.site-nav a {
  min-height: 2.36rem;
  padding: 0.5rem 0.94rem;
  font-size: 1.01rem;
  font-weight: 620;
}

.site-nav a.is-active {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.language-switch {
  min-width: 2.3rem;
  min-height: 2.3rem;
  padding: 0.52rem 0.72rem;
  font-size: 0.8rem;
}

.site-header.is-condensed .site-header__inner {
  min-height: 3.76rem;
  padding: 0.12rem 0.84rem;
}

@media (max-width: 1080px) {
  .site-header {
    width: calc(100% - 0.95rem);
  }

  .site-header__inner {
    min-height: 3.82rem;
    padding: 0.18rem 0.74rem;
    gap: 0.76rem;
  }

  .brand {
    gap: 0.88rem;
  }

  .brand__mark {
    width: 3.35rem;
    height: 3.35rem;
  }

  .brand__mark img {
    width: 2.06rem;
    height: 2.06rem;
  }

  .brand__text strong {
    font-size: 1.72rem;
  }

  .site-nav {
    border-inline-start: 0;
    padding-inline-start: 0;
    gap: 0.28rem;
  }

  .site-nav a {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .language-switch {
    min-width: 2.16rem;
    min-height: 2.16rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 0.74rem);
    top: 0.4rem;
  }

  .site-header__inner {
    min-height: 3.26rem;
    padding: 0.14rem 0.52rem;
  }

  .brand {
    gap: 0.72rem;
  }

  .brand__mark {
    width: 2.88rem;
    height: 2.88rem;
  }

  .brand__mark img {
    width: 1.82rem;
    height: 1.82rem;
  }

  .brand__text strong {
    font-size: 1.46rem;
  }

  .brand__text span {
    font-size: 0.66rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .language-switch {
    min-width: 2.04rem;
    min-height: 2.04rem;
    font-size: 0.72rem;
  }
}

/* High-end 3D animated SaaS upgrade */
:root {
  --depth-shadow-1: 0 20px 40px -28px rgba(5, 19, 17, 0.24);
  --depth-shadow-2: 0 34px 80px -42px rgba(5, 19, 17, 0.28);
  --depth-shadow-3: 0 52px 120px -56px rgba(5, 19, 17, 0.34);
  --depth-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 249, 248, 0.58));
  --depth-border: 1px solid rgba(255, 255, 255, 0.36);
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(28, 190, 122, 0.11), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(71, 227, 174, 0.1), transparent 20%),
    radial-gradient(circle at 72% 28%, rgba(8, 68, 61, 0.1), transparent 26%),
    linear-gradient(180deg, #fcfefe 0%, #f5fbf8 42%, #eef6f4 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.34;
  pointer-events: none;
  animation: depth-orbit 18s ease-in-out infinite;
}

body::before {
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(42, 199, 137, 0.44), transparent 65%);
}

body::after {
  left: -10rem;
  top: 16rem;
  background: radial-gradient(circle, rgba(6, 84, 75, 0.28), transparent 65%);
  animation-delay: 4s;
}

.site-header {
  overflow: hidden;
  transform: translateY(-14px) scale(0.985);
  opacity: 0;
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    top 220ms ease;
  box-shadow: 0 24px 55px -36px rgba(5, 19, 17, 0.32);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.site-header.is-mounted {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header.is-condensed {
  top: 0.45rem;
  background: rgba(249, 253, 252, 0.82);
  box-shadow: 0 22px 48px -34px rgba(5, 19, 17, 0.36);
}

.site-header.is-condensed .site-header__inner {
  min-height: 3.7rem;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
}

.site-header.is-condensed .brand__mark {
  width: 2.55rem;
  height: 2.55rem;
}

.site-header.is-condensed .brand__text strong {
  font-size: 1.22rem;
}

.site-nav a {
  position: relative;
  overflow: hidden;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: auto 16% 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(60, 219, 160, 0.25), rgba(11, 134, 110, 0.9), rgba(60, 219, 160, 0.25));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a.is-active::before {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(14, 59, 54, 0.05);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -10%;
  width: 42%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: rotate(18deg) translateX(520%);
}

.button:hover,
.button:focus-visible {
  box-shadow: var(--depth-shadow-1);
}

.hero {
  isolation: isolate;
  perspective: 1800px;
}

.hero__backdrop {
  background:
    radial-gradient(circle at 18% 14%, rgba(45, 208, 146, 0.18), transparent 26%),
    radial-gradient(circle at 76% 18%, rgba(31, 111, 99, 0.18), transparent 28%),
    radial-gradient(circle at 64% 48%, rgba(255, 255, 255, 0.8), transparent 30%);
  animation: gradient-drift 16s ease-in-out infinite;
}

.hero__grid {
  perspective: 2000px;
}

.hero__content {
  transform: translateZ(24px);
}

.hero__content > * {
  position: relative;
  z-index: 1;
}

.hero__actions {
  margin-top: 2.05rem;
}

.hero-trust-row {
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust-pill,
.service-card,
.service-detail-card,
.trust-card,
.detail-card,
.info-card,
.benefit-card,
.contact-panel,
.support-panel,
.contact-cta,
.split-banner,
.page-hero__content,
.client-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.hero-trust-pill::after,
.service-card::after,
.service-detail-card::after,
.trust-card::after,
.detail-card::after,
.info-card::after,
.benefit-card::after,
.contact-panel::after,
.support-panel::after,
.contact-cta::after,
.split-banner::after,
.page-hero__content::before,
.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(62, 221, 164, 0.18), transparent 36%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.hero-trust-pill:hover,
.service-card:hover,
.service-detail-card:hover,
.trust-card:hover,
.detail-card:hover,
.info-card:hover,
.benefit-card:hover,
.contact-panel:hover,
.support-panel:hover,
.contact-cta:hover,
.split-banner:hover,
.page-hero__content:hover,
.client-card:hover {
  transform:
    perspective(1400px)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg))
    translateY(-10px);
  box-shadow: var(--depth-shadow-3);
}

.hero-trust-pill:hover::after,
.service-card:hover::after,
.service-detail-card:hover::after,
.trust-card:hover::after,
.detail-card:hover::after,
.info-card:hover::after,
.benefit-card:hover::after,
.contact-panel:hover::after,
.support-panel:hover::after,
.contact-cta:hover::after,
.split-banner:hover::after,
.page-hero__content:hover::before,
.client-card:hover::after {
  opacity: 1;
}

.hero-scene {
  position: relative;
  min-height: clamp(28rem, 42vw, 41rem);
  padding: 1rem 0.4rem 1rem 1rem;
  perspective: 2200px;
  transform-style: preserve-3d;
  --scene-rotate-x: 5deg;
  --scene-rotate-y: -10deg;
  --scene-shift-x: 0px;
  --scene-shift-y: 0px;
}

.hero-scene__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.7;
  pointer-events: none;
  animation: glow-wave 10s ease-in-out infinite;
}

.hero-scene__glow--primary {
  top: 3%;
  right: 4%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(34, 196, 132, 0.34), transparent 72%);
}

.hero-scene__glow--secondary {
  left: 4%;
  bottom: 8%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(15, 91, 80, 0.3), transparent 72%);
  animation-delay: 2s;
}

.hero-scene__device {
  position: relative;
  max-width: 44rem;
  margin-left: auto;
  padding: 0.95rem;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(18px);
  box-shadow: 0 54px 120px -64px rgba(7, 25, 22, 0.52);
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.15), calc(var(--scene-shift-y) * -0.15), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(var(--scene-rotate-y));
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hero-scene__device::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(180deg, transparent 62%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  max-width: none;
  min-height: clamp(28rem, 40vw, 36rem);
  border-radius: 1.6rem;
  box-shadow: none;
}

.hero-scene:hover .hero-scene__device {
  box-shadow: 0 68px 140px -70px rgba(7, 25, 22, 0.58);
}

.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card {
  position: absolute;
  z-index: 2;
  border: var(--depth-border);
  background: var(--depth-glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--depth-shadow-2);
}

.scene-badge,
.scene-notification {
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem 1rem;
  border-radius: 1rem;
}

.scene-badge {
  top: 5%;
  right: 8%;
  min-width: 9.75rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.4), calc(var(--scene-shift-y) * -0.4), 90px)
    rotateX(calc(var(--scene-rotate-x) * 0.45))
    rotateY(calc(var(--scene-rotate-y) * 0.45));
  animation: depth-float 8s ease-in-out infinite;
}

.scene-badge__dot,
.support-live__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: #2ed48c;
  box-shadow: 0 0 0 0 rgba(46, 212, 140, 0.5);
  animation: live-pulse 2.1s ease-out infinite;
}

.scene-badge strong,
.scene-analytics strong,
.scene-notification strong {
  color: var(--color-heading);
  font-size: 0.95rem;
}

.scene-badge span,
.scene-analytics__label,
.scene-notification__label {
  color: var(--color-text-soft);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scene-analytics {
  left: 2%;
  bottom: 18%;
  width: min(13rem, 44vw);
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.5), calc(var(--scene-shift-y) * -0.35), 110px)
    rotateX(calc(var(--scene-rotate-x) * 0.55))
    rotateY(calc(var(--scene-rotate-y) * 0.55));
  animation: depth-float 9s ease-in-out infinite 0.8s;
}

.scene-analytics__bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.38rem;
  align-items: end;
  height: 3.1rem;
  margin-top: 0.9rem;
}

.scene-analytics__bars span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 219, 161, 0.95), rgba(7, 84, 74, 0.75));
  animation: bar-bounce 3.4s ease-in-out infinite;
}

.scene-analytics__bars span:nth-child(1) { height: 48%; }
.scene-analytics__bars span:nth-child(2) { height: 78%; animation-delay: 0.3s; }
.scene-analytics__bars span:nth-child(3) { height: 60%; animation-delay: 0.6s; }
.scene-analytics__bars span:nth-child(4) { height: 92%; animation-delay: 0.9s; }

.scene-notification {
  right: 4%;
  bottom: 10%;
  max-width: 12rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.3), calc(var(--scene-shift-y) * -0.25), 95px)
    rotateX(calc(var(--scene-rotate-x) * 0.4))
    rotateY(calc(var(--scene-rotate-y) * 0.4));
  animation: depth-float 8.5s ease-in-out infinite 1.2s;
}

.hero-float-card {
  min-width: 11rem;
  max-width: 13rem;
  padding: 0.92rem 1rem;
  border-radius: 1.2rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.22), calc(var(--scene-shift-y) * -0.22), 80px);
  animation: depth-float 7.6s ease-in-out infinite;
}

.hero-float-card strong,
.hero-float-card__eyebrow {
  display: block;
}

.hero-float-card__eyebrow {
  margin-bottom: 0.28rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float-card strong {
  line-height: 1.45;
}

.hero-float-card--top { animation-delay: 0.3s; }
.hero-float-card--middle { animation-delay: 1.2s; }
.hero-float-card--bottom { animation-delay: 2.1s; }

.section {
  perspective: 1600px;
}

.section::before {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 59, 54, 0.08), transparent);
  pointer-events: none;
}

.page-hero__content,
.contact-cta,
.split-banner,
.support-panel,
.contact-panel,
.service-card,
.service-detail-card,
.trust-card,
.detail-card,
.info-card,
.benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(243, 250, 248, 0.56));
  box-shadow: var(--depth-shadow-2);
}

.page-hero__content {
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  transform: perspective(1600px) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
}

.client-marquee {
  perspective: 1600px;
}

.client-marquee__track {
  align-items: stretch;
  animation-duration: var(--marquee-duration);
}

.client-card {
  transform:
    perspective(1600px)
    rotateX(10deg)
    rotateY(-12deg)
    translateY(0);
  box-shadow: var(--depth-shadow-2);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 248, 247, 0.62));
}

.client-card:hover {
  transform:
    perspective(1600px)
    rotateX(4deg)
    rotateY(-6deg)
    translateY(-12px)
    scale(1.03);
  box-shadow: var(--depth-shadow-3);
}

.client-card__media {
  position: relative;
  overflow: hidden;
}

.client-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 35%),
    linear-gradient(180deg, transparent 60%, rgba(8, 62, 55, 0.12));
  pointer-events: none;
}

.service-card,
.service-detail-card {
  transform:
    perspective(1500px)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg));
}

.service-card__icon,
.service-media {
  transform: translateZ(18px);
  transition: transform 280ms ease, filter 280ms ease;
}

.service-card:hover .service-card__icon,
.service-card:hover .service-media,
.service-detail-card:hover .service-media {
  transform: translateZ(34px) translateY(-4px) scale(1.015);
  filter: drop-shadow(0 14px 24px rgba(13, 79, 70, 0.18));
}

.service-media {
  background:
    radial-gradient(circle at 20% 18%, rgba(61, 222, 163, 0.2), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(228, 242, 239, 0.76)),
    linear-gradient(180deg, rgba(7, 73, 65, 0.08), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.support-live {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.support-live__pill {
  display: grid;
  align-content: center;
  gap: 0.18rem;
  min-width: 10.25rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: var(--depth-glass);
  box-shadow: var(--depth-shadow-1);
}

.support-live__pill strong {
  color: var(--color-heading);
  font-size: 0.94rem;
}

.support-live__pill span {
  color: var(--color-text-soft);
  font-size: 0.82rem;
}

.support-live__pill:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.support-copy,
.support-panel,
.contact-panel,
.contact-cta,
.split-banner {
  position: relative;
  overflow: hidden;
}

.support-copy::before,
.support-panel::before,
.contact-panel::before,
.contact-cta::before,
.split-banner::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 202, 144, 0.16), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: glow-wave 12s ease-in-out infinite;
}

.support-alert,
.support-live__pill,
.hero-trust-pill {
  box-shadow: var(--depth-shadow-1);
}

.form-field input,
.form-field select,
.form-field textarea {
  transform: translateZ(0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 248, 0.94));
}

.button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.toast {
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

body[data-page="support"] .page-hero,
body[data-page="contact"] .page-hero,
body[data-page="services"] .page-hero,
body[data-page="about"] .page-hero {
  overflow: visible;
}

body[data-page="services"] .service-detail-grid,
body[data-page="about"] .trust-grid,
body[data-page="contact"] .trust-grid,
body[data-page="support"] .trust-grid {
  perspective: 1600px;
}

body[data-page="contact"] .contact-cta,
body[data-page="contact"] .contact-panel,
body[data-page="support"] .support-panel {
  box-shadow: var(--depth-shadow-3);
}

html[dir="rtl"] body::before {
  right: auto;
  left: -8rem;
}

html[dir="rtl"] body::after {
  left: auto;
  right: -10rem;
}

html[dir="rtl"] .hero-scene__device {
  margin-right: auto;
  margin-left: 0;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.15), calc(var(--scene-shift-y) * -0.15), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(calc(var(--scene-rotate-y) * -1));
}

html[dir="rtl"] .scene-badge {
  right: auto;
  left: 8%;
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.4), calc(var(--scene-shift-y) * -0.4), 90px)
    rotateX(calc(var(--scene-rotate-x) * 0.45))
    rotateY(calc(var(--scene-rotate-y) * -0.45));
}

html[dir="rtl"] .scene-analytics {
  left: auto;
  right: 2%;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.5), calc(var(--scene-shift-y) * -0.35), 110px)
    rotateX(calc(var(--scene-rotate-x) * 0.55))
    rotateY(calc(var(--scene-rotate-y) * -0.55));
}

html[dir="rtl"] .scene-notification {
  right: auto;
  left: 4%;
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.3), calc(var(--scene-shift-y) * -0.25), 95px)
    rotateX(calc(var(--scene-rotate-x) * 0.4))
    rotateY(calc(var(--scene-rotate-y) * -0.4));
}

html[dir="rtl"] .client-card {
  transform:
    perspective(1600px)
    rotateX(10deg)
    rotateY(12deg)
    translateY(0);
}

html[dir="rtl"] .client-card:hover {
  transform:
    perspective(1600px)
    rotateX(4deg)
    rotateY(6deg)
    translateY(-12px)
    scale(1.03);
}

@keyframes depth-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}

@keyframes gradient-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.04);
    opacity: 0.9;
  }
}

@keyframes depth-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes glow-wave {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.64;
  }

  50% {
    transform: scale(1.08) translate3d(8px, -8px, 0);
    opacity: 0.92;
  }
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 212, 140, 0.48);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(46, 212, 140, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 212, 140, 0);
  }
}

@keyframes bar-bounce {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.92;
  }

  50% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero-scene {
    min-height: auto;
    padding-inline: 0;
  }

  .hero-scene__device {
    max-width: 42rem;
    margin: 0 auto;
  }

  .scene-badge {
    right: 4%;
  }

  .scene-notification {
    right: 2%;
  }

  html[dir="rtl"] .scene-badge {
    left: 4%;
  }

  html[dir="rtl"] .scene-notification {
    left: 2%;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after,
  .hero-scene__glow,
  .support-copy::before,
  .support-panel::before,
  .contact-panel::before,
  .contact-cta::before,
  .split-banner::before {
    display: none;
  }

  .site-header.is-condensed {
    top: 0.5rem;
  }

  .hero-scene {
    perspective: none;
    padding: 0;
  }

  .hero-scene__device {
    padding: 0.7rem;
    border-radius: 1.5rem;
    transform: none !important;
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    position: static;
    max-width: none;
    min-width: 0;
    margin-top: 0.85rem;
    transform: none !important;
  }

  .scene-analytics,
  .scene-notification,
  .scene-badge {
    width: 100%;
  }

  .scene-analytics__bars {
    height: 2.6rem;
  }

  .support-live {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-trust-pill:hover,
  .service-card:hover,
  .service-detail-card:hover,
  .trust-card:hover,
  .detail-card:hover,
  .info-card:hover,
  .benefit-card:hover,
  .contact-panel:hover,
  .support-panel:hover,
  .contact-cta:hover,
  .split-banner:hover,
  .page-hero__content:hover,
  .client-card:hover {
    transform: none;
    box-shadow: var(--depth-shadow-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.is-mounted,
  .site-header.is-condensed,
  .hero__backdrop,
  .hero-scene__device,
  .hero-float-card,
  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .client-marquee__track,
  .hero-trust-pill,
  body::before,
  body::after {
    animation: none !important;
    transform: none !important;
  }
}

/* Premium interaction motion system */
:root {
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-slow: 420ms;
  --motion-ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --motion-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.985);
  transition:
    opacity var(--motion-slow) var(--motion-ease-soft),
    transform var(--motion-slow) var(--motion-ease-soft),
    filter var(--motion-slow) var(--motion-ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(4px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.button,
.site-nav a,
.language-switch,
.service-card,
.service-detail-card,
.trust-card,
.detail-card,
.info-card,
.benefit-card,
.contact-panel,
.support-panel,
.contact-cta,
.split-banner,
.page-hero__content,
.hero-trust-pill,
.client-card,
.form-field input,
.form-field select,
.form-field textarea {
  transition-duration: var(--motion-base);
  transition-timing-function: var(--motion-ease);
}

.button {
  transform-origin: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #0f463f, #146357);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: #0a342f;
  background: rgba(14, 59, 54, 0.14);
}

.language-switch:hover,
.language-switch:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--depth-shadow-1);
}

.site-nav a {
  isolation: isolate;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(58, 221, 161, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity var(--motion-base) var(--motion-ease);
  z-index: -1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
}

.hero__content .eyebrow,
.hero__content h1,
.hero__content .hero__lead,
.hero__content .hero__actions,
.hero__content .hero-trust-row {
  animation: content-rise 720ms var(--motion-ease-soft) both;
}

.hero__content h1 { animation-delay: 40ms; }
.hero__content .hero__lead { animation-delay: 100ms; }
.hero__content .hero__actions { animation-delay: 160ms; }
.hero__content .hero-trust-row { animation-delay: 220ms; }

.hero-scene {
  isolation: isolate;
}

.hero-scene [data-depth] {
  will-change: transform;
}

.hero-scene__glow--primary,
.hero-scene__glow--secondary {
  transform: translate3d(var(--layer-shift-x, 0), var(--layer-shift-y, 0), 0);
}

.hero-scene__device {
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.15 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(var(--scene-rotate-y));
}

.scene-badge {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.4 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.4 + var(--layer-shift-y, 0px)), 90px)
    rotateX(calc(var(--scene-rotate-x) * 0.45))
    rotateY(calc(var(--scene-rotate-y) * 0.45));
}

.scene-analytics {
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.5 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.35 + var(--layer-shift-y, 0px)), 110px)
    rotateX(calc(var(--scene-rotate-x) * 0.55))
    rotateY(calc(var(--scene-rotate-y) * 0.55));
}

.scene-notification {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.3 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.25 + var(--layer-shift-y, 0px)), 95px)
    rotateX(calc(var(--scene-rotate-x) * 0.4))
    rotateY(calc(var(--scene-rotate-y) * 0.4));
}

.hero-float-card {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.22 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.22 + var(--layer-shift-y, 0px)), 80px);
}

.hero-float-card,
.scene-badge,
.scene-analytics,
.scene-notification {
  transition:
    transform var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease),
    background var(--motion-base) var(--motion-ease);
}

.scene-badge:hover,
.scene-analytics:hover,
.scene-notification:hover,
.hero-float-card:hover {
  box-shadow: var(--depth-shadow-3);
  border-color: rgba(58, 221, 161, 0.32);
}

.scene-notification::before,
.scene-badge::before,
.scene-analytics::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 45%);
  pointer-events: none;
}

.service-card > *,
.service-detail-card > *,
.trust-card > *,
.detail-card > *,
.info-card > *,
.benefit-card > *,
.contact-panel > *,
.support-panel > *,
.contact-cta > *,
.split-banner > * {
  position: relative;
  z-index: 1;
}

.service-card__icon,
.service-card__tag,
.service-card h3,
.service-card p,
.service-media,
.service-detail-card h2,
.service-detail-card p,
.service-detail-list,
.trust-card__label,
.trust-card h3,
.trust-card p {
  transition:
    transform var(--motion-base) var(--motion-ease),
    opacity var(--motion-base) var(--motion-ease);
}

.service-card:hover .service-card__icon,
.service-card:hover .service-card__tag,
.service-card:hover h3,
.service-card:hover p,
.service-detail-card:hover .service-media,
.service-detail-card:hover h2,
.service-detail-card:hover p,
.service-detail-card:hover .service-detail-list,
.trust-card:hover .trust-card__label,
.trust-card:hover h3,
.trust-card:hover p {
  transform: translate3d(0, -4px, 18px);
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: start;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(14, 59, 54, 0.05);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[dir="rtl"] .service-card__tag {
  letter-spacing: 0;
  text-transform: none;
}

.client-card {
  overflow: visible;
}

.client-card__label {
  transition: transform var(--motion-base) var(--motion-ease), color var(--motion-base) var(--motion-ease);
}

.client-card:hover .client-card__label {
  transform: translateY(-2px);
  color: var(--color-primary);
}

.client-card:hover .client-card__media {
  transform: translateZ(18px) scale(1.035);
}

.client-card__media {
  transition: transform var(--motion-base) var(--motion-ease), filter var(--motion-base) var(--motion-ease);
}

.hero-clients,
.section-heading,
.support-grid,
.contact-grid,
.service-detail-grid,
.trust-grid {
  position: relative;
}

.hero-clients,
.contact-cta,
.split-banner,
.page-hero__content {
  animation: surface-breathe 9s ease-in-out infinite;
}

.support-live__pill {
  animation: live-drift 6s ease-in-out infinite;
}

.support-live__pill:nth-child(2) { animation-delay: 0.8s; }
.support-live__pill:nth-child(3) { animation-delay: 1.6s; }

.form-field {
  position: relative;
}

.form-field::after {
  content: "";
  position: absolute;
  right: 1rem;
  left: 1rem;
  bottom: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 221, 161, 0.8), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-base) var(--motion-ease);
  pointer-events: none;
}

.form-field:focus-within::after {
  transform: scaleX(1);
}

.support-form.is-success,
.js-form.is-success,
.js-formspree.is-success {
  animation: form-success-pulse 720ms var(--motion-ease-soft);
}

.button.is-loading {
  position: relative;
  pointer-events: none;
}

.button.is-loading::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.55rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  display: inline-block;
  vertical-align: middle;
  animation: spinner-rotate 700ms linear infinite;
}

html[dir="rtl"] .button.is-loading::before {
  margin-right: 0;
  margin-left: 0.55rem;
}

.toast.is-success {
  background: linear-gradient(135deg, #0e5c52, #13826d);
}

.toast.is-error {
  background: linear-gradient(135deg, #8b2f2f, #be4b49);
}

html[dir="rtl"] .hero-scene__device {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.15 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(calc(var(--scene-rotate-y) * -1));
}

html[dir="rtl"] .scene-badge {
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.4 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.4 + var(--layer-shift-y, 0px)), 90px)
    rotateX(calc(var(--scene-rotate-x) * 0.45))
    rotateY(calc(var(--scene-rotate-y) * -0.45));
}

html[dir="rtl"] .scene-analytics {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.5 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.35 + var(--layer-shift-y, 0px)), 110px)
    rotateX(calc(var(--scene-rotate-x) * 0.55))
    rotateY(calc(var(--scene-rotate-y) * -0.55));
}

html[dir="rtl"] .scene-notification {
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.3 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.25 + var(--layer-shift-y, 0px)), 95px)
    rotateX(calc(var(--scene-rotate-x) * 0.4))
    rotateY(calc(var(--scene-rotate-y) * -0.4));
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes live-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes surface-breathe {
  0%,
  100% {
    box-shadow: var(--depth-shadow-2);
  }

  50% {
    box-shadow: var(--depth-shadow-3);
  }
}

@keyframes form-success-pulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.01);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .hero__content .eyebrow,
  .hero__content h1,
  .hero__content .hero__lead,
  .hero__content .hero__actions,
  .hero__content .hero-trust-row,
  .hero-clients,
  .contact-cta,
  .split-banner,
  .page-hero__content,
  .support-live__pill {
    animation: none;
  }

  .service-card__tag {
    margin-bottom: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    filter: none;
  }

  .hero__content .eyebrow,
  .hero__content h1,
  .hero__content .hero__lead,
  .hero__content .hero__actions,
  .hero__content .hero-trust-row,
  .hero-clients,
  .contact-cta,
  .split-banner,
  .page-hero__content,
  .support-live__pill {
    animation: none !important;
  }
}

/* Hero + navbar balance refinement */
.site-header {
  width: min(calc(100% - 1.75rem), 1340px);
}

.site-header__inner {
  min-height: 3.82rem;
  padding: 0.34rem 1.05rem;
  gap: 1.55rem;
}

.site-nav {
  gap: 0.38rem;
}

.site-nav a {
  padding: 0.68rem 0.92rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a.is-active {
  padding-inline: 1rem;
  box-shadow: 0 16px 34px -22px rgba(14, 59, 54, 0.5);
}

.language-switch,
.nav-toggle {
  min-width: 2.62rem;
  min-height: 2.62rem;
}

.brand {
  align-items: center;
}

.site-header.is-condensed .site-header__inner {
  min-height: 3.45rem;
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
  gap: clamp(2.2rem, 4.4vw, 4.7rem);
  align-items: center;
}

.hero__content {
  max-width: 35rem;
  padding-top: 1rem;
}

.hero__content .eyebrow {
  margin-bottom: 0.8rem;
}

.hero h1 {
  max-width: 11.8ch;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.hero__lead {
  max-width: 33rem;
  margin-top: 1.15rem;
  font-size: 1.02rem;
}

.hero__actions {
  margin-top: 1.65rem;
}

.hero-trust-row {
  margin-top: 1.7rem;
}

.hero-scene {
  min-height: clamp(31rem, 46vw, 44rem);
  padding: 0.15rem 0 0 0.8rem;
}

.hero-scene__device {
  max-width: 52rem;
  margin-left: auto;
  margin-right: -0.45rem;
  padding: 1.05rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.15 + var(--layer-shift-x, 0px)), calc(-0.9rem + var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(var(--scene-rotate-y));
}

.hero-media img {
  min-height: clamp(31rem, 44vw, 39rem);
  border-radius: 1.75rem;
}

.scene-badge {
  top: 4%;
  right: 7%;
  min-width: 10.25rem;
}

.scene-analytics {
  left: 3%;
  bottom: 19%;
  width: min(13.8rem, 42vw);
}

.scene-notification {
  right: 2%;
  bottom: 13%;
  max-width: 12.8rem;
}

.hero-float-card {
  min-width: 12rem;
  max-width: 13.6rem;
}

.hero-float-card--top {
  top: 10%;
  left: 5%;
}

.hero-float-card--middle {
  top: 34%;
  right: -1%;
}

.hero-float-card--bottom {
  bottom: 9%;
  left: 9%;
}

html[dir="rtl"] .hero__grid {
  grid-template-columns: minmax(34rem, 1.12fr) minmax(0, 0.88fr);
}

html[dir="rtl"] .hero__content {
  max-width: 35rem;
  padding-top: 1rem;
}

html[dir="rtl"] .hero-scene__device {
  margin-right: auto;
  margin-left: -0.45rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.15 + var(--layer-shift-x, 0px)), calc(-0.9rem + var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(calc(var(--scene-rotate-y) * -1));
}

html[dir="rtl"] .scene-badge {
  left: 7%;
  right: auto;
}

html[dir="rtl"] .scene-analytics {
  right: 3%;
  left: auto;
}

html[dir="rtl"] .scene-notification {
  left: 2%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--top {
  right: 5%;
  left: auto;
}

html[dir="rtl"] .hero-float-card--middle {
  left: -1%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--bottom {
  right: 9%;
  left: auto;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-scene {
    min-height: auto;
    padding-left: 0;
  }

  .hero-scene__device {
    max-width: 44rem;
    margin-inline: auto;
    transform:
      translate3d(calc(var(--scene-shift-x) * 0.1 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.1 + var(--layer-shift-y, 0px)), 0)
      rotateX(var(--scene-rotate-x))
      rotateY(var(--scene-rotate-y));
  }

  html[dir="rtl"] .hero__grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .hero-scene__device {
    margin-inline: auto;
    transform:
      translate3d(calc(var(--scene-shift-x) * -0.1 + var(--layer-shift-x, 0px)), calc(var(--scene-shift-y) * -0.1 + var(--layer-shift-y, 0px)), 0)
      rotateX(var(--scene-rotate-x))
      rotateY(calc(var(--scene-rotate-y) * -1));
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .site-header__inner {
    min-height: 3.75rem;
    padding: 0.36rem 0.75rem;
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 7.2vw, 3rem);
    max-width: 100%;
  }

  .hero__lead {
    margin-top: 1rem;
  }

  .hero-scene__device {
    margin-inline: 0;
    padding: 0.75rem;
    transform: none !important;
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    margin-top: 0.75rem;
  }
}

/* Homepage hero cinematic depth pass */
.site-nav a {
  overflow: hidden;
}

.site-nav a::before {
  background: linear-gradient(90deg, rgba(88, 232, 182, 0.18), rgba(15, 122, 106, 0.95), rgba(88, 232, 182, 0.18));
  transition:
    transform 260ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    opacity 260ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

.site-nav a::after {
  background: radial-gradient(circle at center, rgba(79, 235, 181, 0.2), transparent 58%);
  transition: opacity 260ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0d3c37;
  transform: translateY(-1px);
}

.site-nav a.is-active {
  box-shadow:
    0 18px 36px -24px rgba(14, 59, 54, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero {
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 5% auto auto;
  width: clamp(18rem, 30vw, 28rem);
  height: clamp(18rem, 30vw, 28rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 214, 157, 0.22), rgba(57, 214, 157, 0.08) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0.9;
  animation: hero-ambient-orbit 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 18%;
  width: clamp(10rem, 16vw, 14rem);
  height: clamp(10rem, 16vw, 14rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 92, 82, 0.22), transparent 70%);
  filter: blur(24px);
  opacity: 0.75;
  animation: hero-ambient-orbit 12s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  align-items: center;
}

.hero__content {
  z-index: 2;
}

.hero__content .eyebrow,
.hero__content h1,
.hero__content .hero__lead,
.hero__content .hero__actions,
.hero__content .hero-trust-row {
  opacity: 0;
  animation: hero-copy-rise 820ms var(--motion-ease-soft, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
}

.hero__content .eyebrow { animation-delay: 40ms; }
.hero__content h1 { animation-delay: 120ms; }
.hero__content .hero__lead { animation-delay: 220ms; }
.hero__content .hero__actions { animation-delay: 320ms; }
.hero__content .hero-trust-row { animation-delay: 420ms; }

.hero__content .eyebrow {
  margin-bottom: 0.62rem;
}

.hero h1 {
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.hero__lead {
  margin-top: 0.88rem;
  max-width: 31rem;
  line-height: 1.72;
}

.hero__actions {
  margin-top: 1.2rem;
}

.hero-trust-row {
  margin-top: 1.2rem;
}

.hero-scene {
  min-height: clamp(35rem, 50vw, 48rem);
  transform-style: preserve-3d;
  perspective: 2400px;
}

.hero-scene__glow {
  will-change: transform, opacity;
}

.hero-scene__glow--primary {
  top: -1%;
  right: 0%;
  width: clamp(18rem, 30vw, 26rem);
  height: clamp(18rem, 30vw, 26rem);
  background: radial-gradient(circle, rgba(62, 226, 168, 0.32), rgba(62, 226, 168, 0.14) 42%, transparent 72%);
  filter: blur(34px);
}

.hero-scene__glow--secondary {
  left: 3%;
  bottom: 8%;
  width: clamp(13rem, 22vw, 18rem);
  height: clamp(13rem, 22vw, 18rem);
  background: radial-gradient(circle, rgba(9, 90, 80, 0.26), rgba(9, 90, 80, 0.1) 48%, transparent 74%);
  filter: blur(28px);
}

.hero-scene__device {
  max-width: 60rem;
  margin-right: -1.9rem;
  border-radius: 2.5rem;
  box-shadow:
    0 78px 150px -80px rgba(6, 23, 21, 0.6),
    0 28px 52px -34px rgba(45, 196, 140, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: hero-device-entry 950ms var(--motion-ease-soft, cubic-bezier(0.16, 1, 0.3, 1)) 180ms both;
}

.hero-media img {
  min-height: clamp(34rem, 47vw, 42rem);
  object-position: center center;
  filter: saturate(1.03) contrast(1.01);
}

.hero-scene:hover .hero-scene__device {
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.18 + var(--layer-shift-x, 0px)), calc(-1.7rem + var(--scene-shift-y) * -0.18 + var(--layer-shift-y, 0px)), 0)
    rotateX(calc(var(--scene-rotate-x) * 1.05))
    rotateY(calc(var(--scene-rotate-y) * 1.05))
    scale(1.012);
  box-shadow:
    0 86px 165px -84px rgba(6, 23, 21, 0.64),
    0 32px 56px -34px rgba(45, 196, 140, 0.22);
}

.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card {
  transition:
    transform 300ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    box-shadow 300ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    border-color 300ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    background 300ms var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

.scene-badge:hover,
.scene-analytics:hover,
.scene-notification:hover,
.hero-float-card:hover {
  box-shadow:
    0 34px 64px -36px rgba(6, 23, 21, 0.36),
    0 14px 24px -18px rgba(45, 196, 140, 0.18);
  border-color: rgba(62, 226, 168, 0.28);
}

.scene-badge {
  top: 4%;
  right: 9%;
  animation: hero-widget-float 7.6s ease-in-out infinite 0.2s;
}

.scene-analytics {
  left: 4.5%;
  bottom: 18%;
  animation: hero-widget-float 8.4s ease-in-out infinite 0.8s;
}

.scene-notification {
  right: 0.5%;
  bottom: 12%;
  animation: hero-widget-float 8s ease-in-out infinite 1.3s;
}

.hero-float-card {
  box-shadow:
    0 28px 58px -38px rgba(7, 24, 22, 0.34),
    0 14px 24px -18px rgba(45, 196, 140, 0.14);
}

.hero-float-card--top {
  top: 9%;
  left: 6%;
  animation: hero-widget-float 8.8s ease-in-out infinite 1s;
}

.hero-float-card--middle {
  top: 34%;
  right: 0.5%;
  animation: hero-widget-float 7.8s ease-in-out infinite 1.5s;
}

.hero-float-card--bottom {
  bottom: 8%;
  left: 10%;
  animation: hero-widget-float 8.6s ease-in-out infinite 0.6s;
}

html[dir="rtl"] .hero::before {
  right: auto;
  left: 5%;
}

html[dir="rtl"] .hero::after {
  right: auto;
  left: 12%;
}

html[dir="rtl"] .hero-scene__device {
  margin-left: -1.9rem;
  margin-right: auto;
}

html[dir="rtl"] .hero-scene:hover .hero-scene__device {
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.18 + var(--layer-shift-x, 0px)), calc(-1.7rem + var(--scene-shift-y) * -0.18 + var(--layer-shift-y, 0px)), 0)
    rotateX(calc(var(--scene-rotate-x) * 1.05))
    rotateY(calc(var(--scene-rotate-y) * -1.05))
    scale(1.012);
}

html[dir="rtl"] .scene-badge {
  left: 9%;
  right: auto;
}

html[dir="rtl"] .scene-analytics {
  right: 4.5%;
  left: auto;
}

html[dir="rtl"] .scene-notification {
  left: 0.5%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--top {
  right: 6%;
  left: auto;
}

html[dir="rtl"] .hero-float-card--middle {
  left: 0.5%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--bottom {
  right: 10%;
  left: auto;
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-device-entry {
  from {
    opacity: 0;
    transform:
      translate3d(1.5rem, 1rem, 0)
      rotateX(8deg)
      rotateY(-9deg)
      scale(0.97);
  }

  to {
    opacity: 1;
    transform:
      translate3d(calc(var(--scene-shift-x) * 0.15 + var(--layer-shift-x, 0px)), calc(-1.4rem + var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
      rotateX(var(--scene-rotate-x))
      rotateY(var(--scene-rotate-y))
      scale(1);
  }
}

@keyframes hero-widget-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

@keyframes hero-ambient-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: translate3d(10px, -12px, 0) scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-scene {
    min-height: auto;
    animation: none;
  }

  .hero-scene__device {
    max-width: 47rem;
    margin-inline: auto;
  }

  .hero-media img {
    min-height: clamp(24rem, 54vw, 34rem);
  }

  html[dir="rtl"] .hero-scene__device {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 6.5vw, 2.7rem);
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero-scene__device {
    margin-inline: 0;
    padding: 0.8rem;
  }

  .hero-media img {
    min-height: 0;
    max-height: min(72vw, 28rem);
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero__content .eyebrow,
  .hero__content h1,
  .hero__content .hero__lead,
  .hero__content .hero__actions,
  .hero__content .hero-trust-row,
  .hero-scene,
  .hero-scene__device,
  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    animation: none !important;
  }
}

/* Inner pages premium 3D extension */
.page-hero {
  overflow: clip;
  padding-top: clamp(5.4rem, 8vw, 7rem);
  padding-bottom: clamp(3.8rem, 6vw, 5.2rem);
}

.page-hero::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(61, 223, 165, 0.16), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(12, 93, 83, 0.14), transparent 24%),
    radial-gradient(circle at 55% 60%, rgba(255, 255, 255, 0.72), transparent 30%);
  animation: page-hero-ambient 16s ease-in-out infinite;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 8%;
  width: clamp(12rem, 20vw, 18rem);
  height: clamp(12rem, 20vw, 18rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 214, 157, 0.2), transparent 70%);
  filter: blur(26px);
  opacity: 0.72;
  animation: page-hero-orbit 13s ease-in-out infinite;
  pointer-events: none;
}

.page-hero__content {
  padding: clamp(2rem, 3vw, 2.8rem);
  border-radius: 2rem;
  box-shadow:
    0 42px 100px -62px rgba(7, 24, 22, 0.34),
    0 18px 34px -24px rgba(57, 214, 157, 0.12);
}

.page-hero__content .eyebrow,
.page-hero__content h1,
.page-hero__content > p {
  opacity: 0;
  animation: page-hero-rise 780ms var(--motion-ease-soft, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
}

.page-hero__content h1 { animation-delay: 90ms; }
.page-hero__content > p { animation-delay: 170ms; }

.page-hero h1 {
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-hero__content p:not(.eyebrow) {
  max-width: 47rem;
  line-height: 1.78;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading__text {
  opacity: 0;
  animation: section-rise 720ms var(--motion-ease-soft, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
}

.section-heading h2 { animation-delay: 80ms; }
.section-heading__text { animation-delay: 160ms; }

.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section--muted {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(247, 251, 249, 0.52));
}

.section--muted::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 6%;
  width: clamp(10rem, 16vw, 14rem);
  height: clamp(10rem, 16vw, 14rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 214, 157, 0.12), transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}

.content-grid,
.support-grid,
.contact-grid,
.form-layout,
.service-detail-grid,
.trust-grid,
.about-grid,
.benefits-grid,
.two-column-grid {
  position: relative;
  z-index: 1;
}

.content-grid > *,
.support-grid > *,
.contact-grid > *,
.form-layout > *,
.service-detail-grid > *,
.trust-grid > *,
.about-grid > *,
.benefits-grid > *,
.two-column-grid > * {
  transform-style: preserve-3d;
}

.info-card,
.benefit-card,
.trust-card,
.detail-card,
.service-card,
.service-detail-card,
.contact-panel,
.support-panel,
.support-copy,
.contact-cta,
.split-banner {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 249, 247, 0.56));
  box-shadow:
    0 30px 74px -46px rgba(7, 24, 22, 0.26),
    0 12px 22px -18px rgba(57, 214, 157, 0.08);
}

.info-card:hover,
.benefit-card:hover,
.trust-card:hover,
.detail-card:hover,
.service-card:hover,
.service-detail-card:hover,
.contact-panel:hover,
.support-panel:hover,
.support-copy:hover,
.contact-cta:hover,
.split-banner:hover {
  box-shadow:
    0 40px 92px -52px rgba(7, 24, 22, 0.32),
    0 18px 32px -20px rgba(57, 214, 157, 0.14);
}

.info-card::before,
.benefit-card::before,
.trust-card::before,
.detail-card::before,
.service-card::before,
.service-detail-card::before,
.contact-panel::before,
.support-panel::before,
.support-copy::before,
.contact-cta::before,
.split-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(57, 214, 157, 0.12), transparent 38%);
  opacity: 0;
  transition: opacity var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
  pointer-events: none;
}

.info-card:hover::before,
.benefit-card:hover::before,
.trust-card:hover::before,
.detail-card:hover::before,
.service-card:hover::before,
.service-detail-card:hover::before,
.contact-panel:hover::before,
.support-panel:hover::before,
.support-copy:hover::before,
.contact-cta:hover::before,
.split-banner:hover::before {
  opacity: 1;
}

body[data-page="about"] .content-grid > div,
body[data-page="about"] .content-grid .stack {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(242, 249, 247, 0.46));
  box-shadow: 0 26px 60px -40px rgba(7, 24, 22, 0.18);
}

body[data-page="about"] .content-grid .stack {
  gap: 1.1rem;
}

body[data-page="about"] .trust-grid:first-of-type .trust-card {
  min-height: 100%;
}

body[data-page="about"] .detail-card {
  min-height: 100%;
}

body[data-page="services"] .service-detail-card,
body[data-page="services"] .service-card--detailed {
  overflow: hidden;
}

body[data-page="services"] .service-detail-card:hover,
body[data-page="services"] .service-card--detailed:hover {
  transform:
    perspective(1500px)
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg))
    translateY(-10px);
}

body[data-page="services"] .service-media {
  min-height: 16rem;
  border-radius: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 24px 42px -32px rgba(7, 24, 22, 0.16);
  transition:
    transform var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    box-shadow var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    filter var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

body[data-page="services"] .service-detail-card:hover .service-media,
body[data-page="services"] .service-card--detailed:hover .service-media {
  transform: translate3d(0, -6px, 24px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 34px 56px -36px rgba(7, 24, 22, 0.22);
  filter: saturate(1.03);
}

body[data-page="support"] .support-copy,
body[data-page="support"] .support-panel {
  border-radius: 1.85rem;
}

body[data-page="support"] .support-copy {
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
}

body[data-page="support"] .support-alert,
body[data-page="support"] .support-live__pill {
  box-shadow:
    0 18px 40px -28px rgba(7, 24, 22, 0.2),
    0 10px 18px -16px rgba(57, 214, 157, 0.12);
}

body[data-page="contact"] .contact-panel,
body[data-page="contact"] .card {
  border-radius: 1.75rem;
}

body[data-page="contact"] .contact-list div {
  transition:
    transform var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    border-color var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

body[data-page="contact"] .contact-panel:hover .contact-list div {
  border-color: rgba(14, 59, 54, 0.14);
}

body[data-page="contact"] .contact-list div:hover {
  transform: translateX(4px);
}

html[dir="rtl"] body[data-page="contact"] .contact-list div:hover {
  transform: translateX(-4px);
}

.form-layout > div:first-child,
.support-grid > div:first-child,
.contact-grid > div:first-child {
  align-self: stretch;
}

.service-detail-list li,
.support-list__item {
  line-height: 1.82;
}

.support-copy p,
.contact-copy p,
.content-grid p,
.detail-card p,
.trust-card p,
.service-detail-card p {
  line-height: 1.82;
}

html[dir="rtl"] .page-hero::after {
  right: auto;
  left: 8%;
}

html[dir="rtl"] .section--muted::after {
  left: auto;
  right: 6%;
}

@keyframes page-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page-hero-ambient {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate3d(10px, -10px, 0) scale(1.03);
    opacity: 0.92;
  }
}

@keyframes page-hero-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -12px, 0) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .page-hero__content {
    padding: 1.8rem;
  }

  body[data-page="about"] .content-grid > div,
  body[data-page="about"] .content-grid .stack {
    padding: 1.3rem;
  }

  body[data-page="services"] .service-media {
    min-height: 14rem;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding-top: 4.9rem;
    padding-bottom: 3.4rem;
  }

  .page-hero::after,
  .section--muted::after {
    display: none;
  }

  .page-hero__content {
    padding: 1.45rem;
    border-radius: 1.4rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 6.8vw, 2.9rem);
    line-height: 1.08;
  }

  body[data-page="about"] .content-grid > div,
  body[data-page="about"] .content-grid .stack {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  body[data-page="services"] .service-media {
    min-height: 12.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero::before,
  .page-hero::after,
  .page-hero__content .eyebrow,
  .page-hero__content h1,
  .page-hero__content > p,
  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading__text {
    animation: none !important;
  }
}

/* Production QA and consistency pass */
:root {
  --surface-radius-lg: 1.85rem;
  --surface-radius-md: 1.45rem;
  --qa-shadow-rest: 0 26px 62px -44px rgba(7, 24, 22, 0.22);
  --qa-shadow-hover: 0 34px 78px -46px rgba(7, 24, 22, 0.28);
}

body {
  overflow-x: clip;
}

.site-header,
.page-hero__content,
.contact-cta,
.split-banner,
.support-copy,
.support-panel,
.contact-panel,
.info-card,
.benefit-card,
.trust-card,
.detail-card,
.service-card,
.service-detail-card {
  border-radius: var(--surface-radius-lg);
}

.hero-trust-pill,
.support-alert,
.support-live__pill,
.client-card,
.service-media {
  border-radius: var(--surface-radius-md);
}

.page-hero__content,
.contact-cta,
.split-banner,
.support-copy,
.support-panel,
.contact-panel,
.info-card,
.benefit-card,
.trust-card,
.detail-card,
.service-card,
.service-detail-card {
  box-shadow: var(--qa-shadow-rest);
}

.page-hero__content:hover,
.contact-cta:hover,
.split-banner:hover,
.support-copy:hover,
.support-panel:hover,
.contact-panel:hover,
.info-card:hover,
.benefit-card:hover,
.trust-card:hover,
.detail-card:hover,
.service-card:hover,
.service-detail-card:hover {
  box-shadow: var(--qa-shadow-hover);
}

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

.page-hero {
  padding-top: clamp(5rem, 8vw, 6.6rem);
  padding-bottom: clamp(3.4rem, 5.6vw, 4.8rem);
}

.section-heading {
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.section-heading__text,
.page-hero__content p:not(.eyebrow),
.hero__lead,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p {
  max-width: 42rem;
}

.page-hero__content p:not(.eyebrow),
.section-heading__text,
.hero__lead,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p,
.contact-cta p,
.split-banner p {
  font-size: 1rem;
  line-height: 1.78;
}

.site-header__inner {
  min-height: 3.62rem;
}

.brand {
  min-width: 0;
}

.brand__text {
  justify-content: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
}

.site-nav a.is-active {
  min-height: 2.45rem;
}

.site-nav a::before,
.site-nav a::after {
  pointer-events: none;
}

.hero {
  padding-top: clamp(6.6rem, 10vw, 8.7rem);
  padding-bottom: clamp(3.2rem, 5vw, 4.6rem);
}

.hero__grid {
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  overflow-wrap: anywhere;
}

.hero-scene,
.hero-scene__device,
.hero-media,
.hero-media img {
  min-width: 0;
  max-width: 100%;
}

.hero-scene__device {
  margin-right: -0.8rem;
}

.hero-media img {
  height: auto;
}

.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card {
  backface-visibility: hidden;
}

.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card,
.hero-trust-pill {
  box-shadow: 0 18px 38px -26px rgba(7, 24, 22, 0.24);
}

.scene-badge:hover,
.scene-analytics:hover,
.scene-notification:hover,
.hero-float-card:hover,
.hero-trust-pill:hover {
  box-shadow: 0 24px 48px -28px rgba(7, 24, 22, 0.28);
}

.client-marquee {
  padding-block: 0.55rem;
}

.client-marquee__track {
  gap: 1.2rem;
  animation-duration: var(--marquee-duration);
}

.client-card {
  width: 15rem;
  flex-basis: 15rem;
}

.client-card__media {
  aspect-ratio: 16 / 10.5;
}

.service-card,
.trust-card,
.info-card,
.benefit-card,
.detail-card {
  min-height: 100%;
}

.service-card {
  padding: 1.55rem;
}

.service-card__tag {
  margin-bottom: 0.75rem;
}

.service-card__icon {
  margin-bottom: 0.95rem;
}

.service-media {
  min-height: 14.6rem;
}

.support-grid,
.contact-grid,
.form-layout,
.content-grid {
  gap: clamp(1.3rem, 2.8vw, 2rem);
}

.support-form {
  gap: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 1rem;
}

.contact-list div:hover {
  transform: translateX(3px);
}

html[dir="rtl"] .contact-list div:hover {
  transform: translateX(-3px);
}

.site-footer__grid {
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.site-footer__bottom {
  gap: 0.8rem;
}

html[dir="rtl"] .hero-scene__device {
  margin-left: -0.8rem;
  margin-right: auto;
}

html[dir="rtl"] .hero__content,
html[dir="rtl"] .page-hero__content,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .support-copy,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-panel,
html[dir="rtl"] .support-panel,
html[dir="rtl"] .service-card,
html[dir="rtl"] .service-detail-card,
html[dir="rtl"] .trust-card,
html[dir="rtl"] .detail-card,
html[dir="rtl"] .info-card,
html[dir="rtl"] .benefit-card {
  text-align: right;
}

html[dir="rtl"] .section-heading__text,
html[dir="rtl"] .page-hero__content p:not(.eyebrow),
html[dir="rtl"] .hero__lead,
html[dir="rtl"] .support-copy p,
html[dir="rtl"] .contact-copy p,
html[dir="rtl"] .detail-card p,
html[dir="rtl"] .trust-card p,
html[dir="rtl"] .service-detail-card p,
html[dir="rtl"] .service-card p {
  max-width: none;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .site-nav {
    right: 0.75rem;
    left: 0.75rem;
    padding: 0.9rem;
    border-radius: 1.2rem;
    gap: 0.25rem;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 2.5rem;
    padding-inline: 0.8rem;
  }

  html[dir="rtl"] .site-nav a {
    justify-content: flex-end;
  }

  .section-heading,
  .content-grid,
  .support-grid,
  .contact-grid,
  .form-layout,
  .contact-cta,
  .split-banner,
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .page-hero__content {
    max-width: 100%;
  }

  .hero-scene__device {
    margin-inline: auto;
  }

  html[dir="rtl"] .hero-scene__device {
    margin-inline: auto;
  }

  .scene-badge {
    top: 4%;
    right: 5%;
  }

  .scene-notification {
    right: 2%;
  }

  html[dir="rtl"] .scene-badge {
    left: 5%;
    right: auto;
  }

  html[dir="rtl"] .scene-notification {
    left: 2%;
    right: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 0.9rem);
    top: 0.45rem;
  }

  .site-header__inner {
    min-height: 3.52rem;
    padding: 0.28rem 0.68rem;
    gap: 0.6rem;
  }

  .brand__mark {
    width: 2.32rem;
    height: 2.32rem;
  }

  .brand__text strong {
    font-size: 1.08rem;
  }

  .brand__text span {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .site-nav {
    top: calc(100% + 0.55rem);
    right: 0.45rem;
    left: 0.45rem;
    padding: 0.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding-top: 4.7rem;
    padding-bottom: 3rem;
  }

  .page-hero__content,
  .contact-cta,
  .split-banner,
  .support-copy,
  .support-panel,
  .contact-panel,
  .info-card,
  .benefit-card,
  .trust-card,
  .detail-card,
  .service-card,
  .service-detail-card {
    padding: 1.2rem;
    border-radius: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 6.5vw, 2.65rem);
    line-height: 1.08;
  }

  .hero__lead,
  .page-hero__content p:not(.eyebrow),
  .section-heading__text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-trust-row,
  .support-live,
  .contact-cta__actions,
  .split-banner__actions {
    grid-template-columns: 1fr;
  }

  .hero-trust-pill,
  .support-live__pill,
  .client-card {
    min-width: 0;
  }

  .hero-scene,
  .hero-media {
    padding: 0;
  }

  .hero-scene__device {
    padding: 0.72rem;
    border-radius: 1.4rem;
    transform: none !important;
  }

  .hero-media img {
    max-height: min(72vw, 26rem);
    border-radius: 1.25rem;
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.72rem;
    transform: none !important;
    animation: none !important;
  }

  .client-marquee__track {
    gap: 0.9rem;
    animation-duration: var(--marquee-duration);
  }

  .client-card {
    width: 11.4rem;
    flex-basis: 11.4rem;
  }

  .service-media {
    min-height: 12.4rem;
  }

  .service-card__tag {
    font-size: 0.72rem;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 5.1rem;
  }

  html[dir="rtl"] .whatsapp-float {
    left: 0.7rem;
    right: auto;
  }

  .toast {
    right: 0.7rem;
    left: 0.7rem;
    max-width: none;
  }

  html[dir="rtl"] .toast {
    left: 0.7rem;
    right: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track,
  .hero-scene,
  .hero-scene__device,
  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card,
  .page-hero::before,
  .page-hero::after {
    animation: none !important;
    transform: none !important;
  }

  .page-hero__content:hover,
  .contact-cta:hover,
  .split-banner:hover,
  .support-copy:hover,
  .support-panel:hover,
  .contact-panel:hover,
  .info-card:hover,
  .benefit-card:hover,
  .trust-card:hover,
  .detail-card:hover,
  .service-card:hover,
  .service-detail-card:hover {
    transform: none !important;
  }
}

/* Final precedence-safe premium balance overrides */
:root {
  --container: 1100px;
}

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

.container--wide {
  width: min(1240px, calc(100% - 2.4rem));
}

.section {
  padding: clamp(3.8rem, 7.2vw, 5.8rem) 0;
}

.page-hero {
  padding-top: clamp(4.8rem, 7.6vw, 6.2rem);
  padding-bottom: clamp(3.1rem, 5.2vw, 4.4rem);
}

.site-header {
  width: min(calc(100% - 1.15rem), 1320px);
  background: linear-gradient(180deg, rgba(248, 252, 250, 0.86), rgba(242, 248, 245, 0.78));
  border: 1px solid rgba(14, 59, 54, 0.1);
  box-shadow: 0 15px 34px -28px rgba(7, 24, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px) saturate(120%);
}

.site-header__inner {
  min-height: 4.18rem;
  padding: 0.2rem 0.98rem;
  gap: 1.22rem;
}

.brand {
  gap: 1.14rem;
}

.brand__mark {
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 1rem;
}

.brand__mark img {
  width: 2.38rem;
  height: 2.38rem;
}

.brand__text strong {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.brand__text span {
  font-size: 0.82rem;
}

.site-nav {
  gap: 0.92rem;
  padding-inline-start: 0.96rem;
  border-inline-start: 1px solid rgba(14, 59, 54, 0.12);
}

.site-nav a {
  min-height: 2.44rem;
  padding: 0.52rem 0.98rem;
  font-size: 1rem;
  font-weight: 620;
}

.site-nav a.is-active {
  padding: 0.5rem 0.88rem;
  border-radius: 999px;
}

.language-switch {
  min-width: 2.42rem;
  min-height: 2.42rem;
  padding: 0.58rem 0.76rem;
  font-size: 0.82rem;
}

.hero {
  padding-top: clamp(6rem, 9.2vw, 7.7rem);
  padding-bottom: clamp(2.9rem, 4.7vw, 4rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(31rem, 1.04fr);
  gap: clamp(1.8rem, 3.7vw, 3.4rem);
}

.hero__content {
  max-width: 36.5rem;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 4.25vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -0.034em;
}

.hero__lead {
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.72;
  margin-top: 0.98rem;
  max-width: 42ch;
}

.page-hero__content p:not(.eyebrow),
.section-heading__text,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p,
.contact-cta p,
.split-banner p {
  font-size: clamp(0.96rem, 1.02vw, 1.02rem);
  line-height: 1.72;
}

.hero-scene {
  min-height: clamp(28rem, 40vw, 37rem);
}

.hero-media img {
  min-height: clamp(26rem, 37vw, 33rem);
  max-height: 36rem;
}

.hero__actions {
  margin-top: 1.15rem;
}

.hero-trust-row {
  margin-top: 1.08rem;
  gap: 0.72rem;
}

.hero-trust-pill {
  padding: 0.76rem 0.92rem;
}

@media (max-width: 1080px) {
  .container,
  .container--wide {
    width: min(var(--container), calc(100% - 1.8rem));
  }

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

  .site-header__inner {
    gap: 0.8rem;
    padding: 0.24rem 0.8rem;
  }

  .brand__mark {
    width: 3.35rem;
    height: 3.35rem;
  }

  .brand__mark img {
    width: 2.05rem;
    height: 2.05rem;
  }

  .brand__text strong {
    font-size: 1.72rem;
  }

  .site-nav {
    border-inline-start: 0;
    padding-inline-start: 0;
    gap: 0.3rem;
  }

  .site-nav a {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .language-switch {
    min-width: 2.3rem;
    min-height: 2.3rem;
    font-size: 0.8rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  }

  .hero-scene {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container,
  .container--wide {
    width: calc(100% - 1.1rem);
  }

  .site-header {
    width: calc(100% - 0.8rem);
    top: 0.42rem;
  }

  .site-header__inner {
    min-height: 3.38rem;
    padding: 0.2rem 0.58rem;
  }

  .brand__mark {
    width: 2.86rem;
    height: 2.86rem;
  }

  .brand__mark img {
    width: 1.8rem;
    height: 1.8rem;
  }

  .brand__text strong {
    font-size: 1.42rem;
  }

  .brand__text span {
    font-size: 0.68rem;
  }

  .site-nav a {
    font-size: 0.96rem;
    font-weight: 600;
  }

  .language-switch {
    min-width: 2.18rem;
    min-height: 2.18rem;
    font-size: 0.76rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 7.4vw, 2.9rem);
    line-height: 1.04;
  }

  .hero__lead,
  .page-hero__content p:not(.eyebrow),
  .section-heading__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .section {
    padding: 3.2rem 0;
  }
}

/* Homepage hero and navbar premium balancing pass */
.site-header {
  width: min(calc(100% - 1.6rem), 1360px);
  box-shadow: 0 20px 48px -34px rgba(7, 24, 22, 0.3);
}

.site-header__inner {
  min-height: 3.7rem;
  padding: 0.3rem 1.05rem;
  gap: 1.45rem;
  align-items: center;
}

.brand,
.site-nav,
.language-switch {
  align-self: center;
}

.site-nav {
  gap: 0.42rem;
}

.site-nav a {
  padding: 0.66rem 0.96rem;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(14, 59, 54, 0.07);
  box-shadow: 0 12px 24px -20px rgba(14, 59, 54, 0.28);
}

.site-nav a.is-active {
  padding-inline: 1.04rem;
  box-shadow:
    0 16px 30px -20px rgba(14, 59, 54, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.language-switch,
.nav-toggle {
  min-width: 2.58rem;
  min-height: 2.58rem;
}

.site-header.is-condensed .site-header__inner {
  min-height: 3.34rem;
  padding: 0.24rem 0.95rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(36rem, 1.18fr);
  gap: clamp(2rem, 4vw, 4.1rem);
}

.hero__content {
  max-width: 34rem;
  padding-top: 0.55rem;
}

.hero__content .eyebrow {
  margin-bottom: 0.68rem;
}

.hero h1 {
  max-width: 12.2ch;
  font-size: clamp(2.15rem, 3.75vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.hero__lead {
  max-width: 32rem;
  margin-top: 0.95rem;
  font-size: 1rem;
  line-height: 1.76;
}

.hero__actions {
  margin-top: 1.35rem;
}

.hero-trust-row {
  margin-top: 1.35rem;
  gap: 0.82rem;
}

.hero-scene {
  min-height: clamp(34rem, 49vw, 47rem);
  padding: 0 0 0 0.3rem;
  animation: hero-scene-float 8.5s ease-in-out infinite;
}

.hero-scene__device {
  max-width: 58rem;
  margin-left: auto;
  margin-right: -1.35rem;
  padding: 1.08rem;
  border-radius: 2.35rem;
  box-shadow:
    0 65px 140px -74px rgba(7, 25, 22, 0.52),
    0 26px 48px -32px rgba(33, 169, 122, 0.18);
  transform:
    translate3d(calc(var(--scene-shift-x) * 0.15 + var(--layer-shift-x, 0px)), calc(-1.4rem + var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(var(--scene-rotate-y));
}

.hero-media img {
  min-height: clamp(33rem, 46vw, 41rem);
  border-radius: 1.9rem;
}

.hero-scene__glow--primary {
  top: 1%;
  right: 2%;
  width: 16rem;
  height: 16rem;
}

.hero-scene__glow--secondary {
  left: 2%;
  bottom: 10%;
  width: 13.5rem;
  height: 13.5rem;
}

.scene-badge {
  top: 3%;
  right: 8%;
  min-width: 10.5rem;
}

.scene-analytics {
  left: 5%;
  bottom: 20%;
  width: min(14.2rem, 40vw);
}

.scene-notification {
  right: 1%;
  bottom: 13.5%;
  max-width: 13rem;
}

.hero-float-card {
  min-width: 11.75rem;
  max-width: 13.1rem;
  box-shadow:
    0 28px 58px -36px rgba(7, 25, 22, 0.34),
    0 12px 26px -18px rgba(33, 169, 122, 0.14);
}

.hero-float-card--top {
  top: 8%;
  left: 7%;
}

.hero-float-card--middle {
  top: 35%;
  right: 1%;
}

.hero-float-card--bottom {
  bottom: 8%;
  left: 11%;
}

.button,
.site-nav a,
.language-switch {
  transition:
    transform var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    box-shadow var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    background var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    color var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    border-color var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 20px 36px -24px rgba(7, 24, 22, 0.28);
}

html[dir="rtl"] .hero__grid {
  grid-template-columns: minmax(36rem, 1.18fr) minmax(0, 0.84fr);
}

html[dir="rtl"] .hero-scene__device {
  margin-right: auto;
  margin-left: -1.35rem;
  transform:
    translate3d(calc(var(--scene-shift-x) * -0.15 + var(--layer-shift-x, 0px)), calc(-1.4rem + var(--scene-shift-y) * -0.15 + var(--layer-shift-y, 0px)), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(calc(var(--scene-rotate-y) * -1));
}

html[dir="rtl"] .scene-badge {
  left: 8%;
  right: auto;
}

html[dir="rtl"] .scene-analytics {
  right: 5%;
  left: auto;
}

html[dir="rtl"] .scene-notification {
  left: 1%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--top {
  right: 7%;
  left: auto;
}

html[dir="rtl"] .hero-float-card--middle {
  left: 1%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--bottom {
  right: 11%;
  left: auto;
}

@keyframes hero-scene-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    width: min(calc(100% - 1.25rem), 1360px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-scene {
    min-height: auto;
    padding-left: 0;
  }

  .hero-scene__device {
    max-width: 46rem;
    margin-inline: auto;
    transform:
      translate3d(calc(var(--scene-shift-x) * 0.08 + var(--layer-shift-x, 0px)), calc(-0.3rem + var(--scene-shift-y) * -0.08 + var(--layer-shift-y, 0px)), 0)
      rotateX(var(--scene-rotate-x))
      rotateY(var(--scene-rotate-y));
  }

  html[dir="rtl"] .hero__grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .hero-scene__device {
    margin-inline: auto;
    transform:
      translate3d(calc(var(--scene-shift-x) * -0.08 + var(--layer-shift-x, 0px)), calc(-0.3rem + var(--scene-shift-y) * -0.08 + var(--layer-shift-y, 0px)), 0)
      rotateX(var(--scene-rotate-x))
      rotateY(calc(var(--scene-rotate-y) * -1));
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .site-header__inner {
    min-height: 3.62rem;
    padding: 0.3rem 0.72rem;
    gap: 0.68rem;
  }

  .site-nav a {
    font-size: 0.97rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 6.8vw, 2.85rem);
    line-height: 1.07;
  }

  .hero__lead {
    margin-top: 0.9rem;
  }

  .hero-scene {
    animation: none;
  }

  .hero-scene__device {
    margin-inline: 0;
    padding: 0.78rem;
    transform: none !important;
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    margin-top: 0.78rem;
  }
}

/* Final production QA consistency pass */
:root {
  --qa-radius-lg-final: 1.8rem;
  --qa-radius-md-final: 1.35rem;
  --qa-shadow-rest-final: 0 24px 58px -42px rgba(7, 24, 22, 0.22);
  --qa-shadow-hover-final: 0 34px 76px -44px rgba(7, 24, 22, 0.28);
}

body {
  overflow-x: clip;
}

.site-header,
.page-hero__content,
.contact-cta,
.split-banner,
.support-copy,
.support-panel,
.contact-panel,
.info-card,
.benefit-card,
.trust-card,
.detail-card,
.service-card,
.service-detail-card {
  border-radius: var(--qa-radius-lg-final);
}

.hero-trust-pill,
.support-alert,
.support-live__pill,
.client-card,
.service-media,
.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card {
  border-radius: var(--qa-radius-md-final);
}

.page-hero__content,
.contact-cta,
.split-banner,
.support-copy,
.support-panel,
.contact-panel,
.info-card,
.benefit-card,
.trust-card,
.detail-card,
.service-card,
.service-detail-card {
  box-shadow: var(--qa-shadow-rest-final);
}

.page-hero__content:hover,
.contact-cta:hover,
.split-banner:hover,
.support-copy:hover,
.support-panel:hover,
.contact-panel:hover,
.info-card:hover,
.benefit-card:hover,
.trust-card:hover,
.detail-card:hover,
.service-card:hover,
.service-detail-card:hover {
  box-shadow: var(--qa-shadow-hover-final);
}

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

.page-hero {
  padding-top: clamp(5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.3rem, 5.4vw, 4.8rem);
}

.section-heading {
  gap: clamp(1.3rem, 2.8vw, 2.4rem);
}

.section-heading__text,
.page-hero__content p:not(.eyebrow),
.hero__lead,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p,
.contact-cta p,
.split-banner p {
  font-size: 1rem;
  line-height: 1.76;
  max-width: 42rem;
}

.site-header {
  width: min(calc(100% - 1.35rem), 1360px);
  box-shadow: 0 20px 46px -34px rgba(7, 24, 22, 0.26);
}

.site-header__inner {
  min-height: 3.6rem;
  padding: 0.26rem 1rem;
  gap: 1.1rem;
  align-items: center;
}

.brand,
.site-nav,
.language-switch,
.nav-toggle {
  align-self: center;
}

.brand {
  min-width: 0;
}

.brand__text {
  justify-content: center;
}

.site-nav {
  gap: 0.34rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.42rem;
  padding: 0.62rem 0.96rem;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.42rem;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 169, 122, 0), rgba(33, 169, 122, 0.8), rgba(33, 169, 122, 0));
  opacity: 0;
  transform: scaleX(0.55);
  transition:
    opacity var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1)),
    transform var(--motion-base, 280ms) var(--motion-ease, cubic-bezier(0.22, 0.8, 0.24, 1));
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(14, 59, 54, 0.065);
  box-shadow: 0 12px 24px -20px rgba(14, 59, 54, 0.22);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active {
  min-height: 2.42rem;
  padding-inline: 1.04rem;
  box-shadow:
    0 14px 30px -22px rgba(14, 59, 54, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.language-switch,
.nav-toggle {
  min-width: 2.52rem;
  min-height: 2.52rem;
}

.site-header.is-condensed .site-header__inner {
  min-height: 3.28rem;
  padding: 0.2rem 0.9rem;
}

.hero {
  padding-top: clamp(6.4rem, 10vw, 8.5rem);
  padding-bottom: clamp(3.15rem, 5vw, 4.5rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(35rem, 1.14fr);
  align-items: center;
  gap: clamp(1.9rem, 4vw, 3.8rem);
}

.hero__content,
.page-hero__content {
  min-width: 0;
}

.hero__content {
  max-width: 33.5rem;
  padding-top: 0.4rem;
}

.hero__content .eyebrow {
  margin-bottom: 0.62rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.08rem, 3.48vw, 3.56rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
}

.hero__lead {
  margin-top: 0.86rem;
}

.hero__actions {
  margin-top: 1.2rem;
}

.hero-trust-row {
  margin-top: 1.22rem;
  gap: 0.78rem;
}

.hero-scene,
.hero-media,
.hero-scene__device,
.hero-media img {
  min-width: 0;
  max-width: 100%;
}

.hero-scene {
  min-height: clamp(32rem, 46vw, 44rem);
}

.hero-scene__device {
  max-width: 54rem;
  margin-left: auto;
  margin-right: -0.65rem;
  padding: 1rem;
  border-radius: 2rem;
  box-shadow:
    0 54px 112px -70px rgba(7, 25, 22, 0.5),
    0 20px 42px -28px rgba(33, 169, 122, 0.16);
}

.hero-media img {
  min-height: clamp(30rem, 43vw, 37rem);
  height: auto;
  border-radius: 1.7rem;
}

.scene-badge,
.scene-analytics,
.scene-notification,
.hero-float-card {
  backface-visibility: hidden;
  box-shadow: 0 18px 38px -28px rgba(7, 24, 22, 0.22);
}

.scene-badge:hover,
.scene-analytics:hover,
.scene-notification:hover,
.hero-float-card:hover,
.hero-trust-pill:hover {
  box-shadow: 0 22px 44px -28px rgba(7, 24, 22, 0.26);
}

.scene-badge {
  top: 4%;
  right: 7%;
  min-width: 10.2rem;
}

.scene-analytics {
  left: 6%;
  bottom: 19%;
  width: min(13.8rem, 38vw);
}

.scene-notification {
  right: 2%;
  bottom: 12%;
  max-width: 12.8rem;
}

.hero-float-card {
  min-width: 11.25rem;
  max-width: 12.8rem;
}

.hero-float-card--top {
  top: 8%;
  left: 7%;
}

.hero-float-card--middle {
  top: 34%;
  right: 1.5%;
}

.hero-float-card--bottom {
  bottom: 8%;
  left: 11%;
}

.client-marquee {
  padding-block: 0.5rem;
}

.client-marquee__track {
  gap: 1.15rem;
  animation-duration: var(--marquee-duration);
}

.client-card {
  width: 14.8rem;
  flex-basis: 14.8rem;
}

.client-card__media {
  aspect-ratio: 16 / 10.4;
}

.service-card,
.trust-card,
.info-card,
.benefit-card,
.detail-card {
  min-height: 100%;
}

.service-card {
  padding: 1.5rem;
}

.service-card__icon {
  margin-bottom: 0.95rem;
}

.service-card__tag {
  margin-bottom: 0.72rem;
}

.service-media {
  min-height: 14.3rem;
}

.support-grid,
.contact-grid,
.form-layout,
.content-grid {
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.support-form {
  gap: 1rem;
}

.support-form input,
.support-form select,
.support-form textarea,
.contact-form input,
.contact-form textarea {
  border-radius: 1rem;
}

.contact-list div:hover {
  transform: translateX(3px);
}

.site-footer__grid {
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.site-footer__bottom {
  gap: 0.8rem;
}

html[dir="rtl"] .hero__grid {
  grid-template-columns: minmax(35rem, 1.14fr) minmax(0, 0.86fr);
}

html[dir="rtl"] .hero-scene__device {
  margin-right: auto;
  margin-left: -0.65rem;
}

html[dir="rtl"] .scene-badge {
  left: 7%;
  right: auto;
}

html[dir="rtl"] .scene-analytics {
  right: 6%;
  left: auto;
}

html[dir="rtl"] .scene-notification {
  left: 2%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--top {
  right: 7%;
  left: auto;
}

html[dir="rtl"] .hero-float-card--middle {
  left: 1.5%;
  right: auto;
}

html[dir="rtl"] .hero-float-card--bottom {
  right: 11%;
  left: auto;
}

html[dir="rtl"] .page-hero__content,
html[dir="rtl"] .support-copy,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-panel,
html[dir="rtl"] .support-panel,
html[dir="rtl"] .service-card,
html[dir="rtl"] .trust-card,
html[dir="rtl"] .detail-card {
  text-align: right;
}

html[dir="rtl"] .contact-list div:hover {
  transform: translateX(-3px);
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .site-nav {
    right: 0.75rem;
    left: 0.75rem;
    padding: 0.9rem;
    border-radius: 1.2rem;
    gap: 0.25rem;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.5rem;
    padding-inline: 0.8rem;
  }

  .site-nav a::after {
    left: 0.8rem;
    right: auto;
    width: calc(100% - 1.6rem);
    transform-origin: left center;
  }

  html[dir="rtl"] .site-nav a {
    justify-content: flex-end;
  }

  html[dir="rtl"] .site-nav a::after {
    right: 0.8rem;
    left: auto;
    transform-origin: right center;
  }

  .section-heading,
  .content-grid,
  .support-grid,
  .contact-grid,
  .form-layout,
  .contact-cta,
  .split-banner,
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .page-hero__content {
    max-width: 100%;
  }

  .hero-scene {
    min-height: auto;
  }

  .hero-scene__device {
    max-width: 46rem;
    margin-inline: auto;
  }

  html[dir="rtl"] .hero__grid,
  html[dir="rtl"] .hero-scene__device {
    margin-inline: auto;
  }

  .scene-badge {
    top: 4%;
    right: 5%;
  }

  .scene-notification {
    right: 2%;
  }

  html[dir="rtl"] .scene-badge {
    left: 5%;
    right: auto;
  }

  html[dir="rtl"] .scene-notification {
    left: 2%;
    right: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 0.9rem);
    top: 0.45rem;
  }

  .site-header__inner {
    min-height: 3.5rem;
    padding: 0.26rem 0.68rem;
    gap: 0.58rem;
  }

  .site-nav {
    top: calc(100% + 0.55rem);
    right: 0.45rem;
    left: 0.45rem;
    padding: 0.75rem;
  }

  .section {
    padding: 3.45rem 0;
  }

  .page-hero {
    padding-top: 4.7rem;
    padding-bottom: 3rem;
  }

  .page-hero__content,
  .contact-cta,
  .split-banner,
  .support-copy,
  .support-panel,
  .contact-panel,
  .info-card,
  .benefit-card,
  .trust-card,
  .detail-card,
  .service-card,
  .service-detail-card {
    padding: 1.2rem;
    border-radius: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 6.5vw, 2.6rem);
    line-height: 1.08;
  }

  .hero__lead,
  .page-hero__content p:not(.eyebrow),
  .section-heading__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-trust-row,
  .support-live,
  .contact-cta__actions,
  .split-banner__actions {
    grid-template-columns: 1fr;
  }

  .hero-trust-pill,
  .support-live__pill,
  .client-card {
    min-width: 0;
  }

  .hero-scene,
  .hero-media {
    padding: 0;
  }

  .hero-scene__device {
    margin-inline: 0;
    padding: 0.72rem;
    border-radius: 1.35rem;
    transform: none !important;
  }

  .hero-media img {
    max-height: min(72vw, 26rem);
    border-radius: 1.2rem;
  }

  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.72rem;
    transform: none !important;
    animation: none !important;
  }

  .client-marquee__track {
    gap: 0.9rem;
    animation-duration: var(--marquee-duration);
  }

  .client-card {
    width: 11.3rem;
    flex-basis: 11.3rem;
  }

  .service-media {
    min-height: 12.4rem;
  }

  .service-card__tag {
    font-size: 0.72rem;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 5.1rem;
  }

  html[dir="rtl"] .whatsapp-float {
    left: 0.7rem;
    right: auto;
  }

  .toast {
    right: 0.7rem;
    left: 0.7rem;
    max-width: none;
  }

  html[dir="rtl"] .toast {
    left: 0.7rem;
    right: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track,
  .hero-scene,
  .hero-scene__device,
  .scene-badge,
  .scene-analytics,
  .scene-notification,
  .hero-float-card,
  .page-hero::before,
  .page-hero::after {
    animation: none !important;
    transform: none !important;
  }

  .page-hero__content:hover,
  .contact-cta:hover,
  .split-banner:hover,
  .support-copy:hover,
  .support-panel:hover,
  .contact-panel:hover,
  .info-card:hover,
  .benefit-card:hover,
  .trust-card:hover,
  .detail-card:hover,
  .service-card:hover,
  .service-detail-card:hover {
    transform: none !important;
  }
}

/* Ultra-final hero/navbar balance overrides (must stay last) */
:root {
  --container: 1100px;
}

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

.container--wide {
  width: min(1240px, calc(100% - 2.4rem));
}

.section {
  padding: clamp(3.8rem, 7.2vw, 5.8rem) 0;
}

.site-header {
  width: min(calc(100% - 1.3rem), 1320px);
  background: linear-gradient(180deg, rgba(248, 252, 250, 0.86), rgba(242, 248, 245, 0.78));
  border: 1px solid rgba(14, 59, 54, 0.1);
  box-shadow: 0 18px 40px -30px rgba(7, 24, 22, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
}

.site-header__inner {
  min-height: 4.6rem;
  padding: 0.34rem 1.12rem;
  gap: 1.45rem;
}

.brand {
  gap: 1.08rem;
}

.brand__mark {
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 1rem;
}

.brand__mark img {
  width: 2.2rem;
  height: 2.2rem;
}

.brand__text strong {
  font-size: 1.86rem;
  letter-spacing: -0.015em;
}

.brand__text span {
  font-size: 0.8rem;
}

.site-nav {
  gap: 0.72rem;
}

.site-nav a {
  min-height: 2.7rem;
  padding: 0.68rem 1.08rem;
  font-size: 0.96rem;
}

.hero {
  padding-top: clamp(6rem, 9.2vw, 7.7rem);
  padding-bottom: clamp(2.9rem, 4.7vw, 4rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(31rem, 1.04fr);
  gap: clamp(1.8rem, 3.7vw, 3.4rem);
}

.hero__content {
  max-width: 36.5rem;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 4.25vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -0.034em;
}

.hero__lead,
.page-hero__content p:not(.eyebrow),
.section-heading__text,
.support-copy p,
.contact-copy p,
.detail-card p,
.trust-card p,
.service-detail-card p,
.service-card p,
.contact-cta p,
.split-banner p {
  font-size: clamp(0.96rem, 1.02vw, 1.02rem);
  line-height: 1.72;
}

.hero__lead {
  margin-top: 0.98rem;
  max-width: 42ch;
}

.hero-scene {
  min-height: clamp(28rem, 40vw, 37rem);
}

.hero-media img {
  min-height: clamp(26rem, 37vw, 33rem);
  max-height: 36rem;
}

.hero__actions {
  margin-top: 1.15rem;
}

.hero-trust-row {
  margin-top: 1.08rem;
  gap: 0.72rem;
}

.hero-trust-pill {
  padding: 0.76rem 0.92rem;
}

@media (max-width: 1080px) {
  .container,
  .container--wide {
    width: min(var(--container), calc(100% - 1.8rem));
  }

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

  .site-header__inner {
    gap: 0.8rem;
    padding: 0.32rem 0.8rem;
  }

  .brand__mark {
    width: 3.15rem;
    height: 3.15rem;
  }

  .brand__mark img {
    width: 1.96rem;
    height: 1.96rem;
  }

  .brand__text strong {
    font-size: 1.62rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  }
}

@media (max-width: 720px) {
  .container,
  .container--wide {
    width: calc(100% - 1.1rem);
  }

  .site-header {
    width: calc(100% - 0.8rem);
    top: 0.42rem;
  }

  .site-header__inner {
    min-height: 3.46rem;
    padding: 0.24rem 0.62rem;
  }

  .brand__mark {
    width: 2.72rem;
    height: 2.72rem;
  }

  .brand__mark img {
    width: 1.72rem;
    height: 1.72rem;
  }

  .brand__text strong {
    font-size: 1.34rem;
  }

  .brand__text span {
    font-size: 0.68rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 7.4vw, 2.9rem);
    line-height: 1.04;
  }

  .hero__lead,
  .page-hero__content p:not(.eyebrow),
  .section-heading__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .section {
    padding: 3.2rem 0;
  }
}

/* Navbar consistency patch */
.site-header {
  width: min(calc(100% - 1.25rem), 1240px);
  border-radius: 999px;
  box-shadow: 0 12px 30px -24px rgba(7, 24, 22, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.site-header__inner {
  min-height: 4.45rem; /* 4.15rem -> 4.45rem */
  padding: 0.4rem 1.02rem; /* 0.32rem 0.95rem -> 0.4rem 1.02rem */
  gap: 1rem;
  align-items: center;
}

.brand {
  gap: 0.78rem;
}

.brand__mark {
  width: 2.92rem; /* 2.7rem -> 2.92rem */
  height: 2.92rem; /* 2.7rem -> 2.92rem */
  border-radius: 0.84rem;
}

.brand__mark img {
  width: 1.82rem; /* 1.68rem -> 1.82rem */
  height: 1.82rem; /* 1.68rem -> 1.82rem */
}

.brand__text strong {
  font-size: 1.45rem; /* 1.34rem -> 1.45rem */
  letter-spacing: -0.014em;
}

.brand__text span {
  font-size: 0.7rem; /* 0.68rem -> 0.7rem */
}

.site-nav {
  gap: 0.52rem; /* 0.45rem -> 0.52rem */
  padding-inline-start: 0.92rem; /* 0.8rem -> 0.92rem */
  border-inline-start: 1px solid rgba(14, 59, 54, 0.1);
}

.site-nav a {
  min-height: 2.22rem; /* 2.05rem -> 2.22rem */
  padding: 0.42rem 0.82rem; /* 0.34rem 0.72rem -> 0.42rem 0.82rem */
  font-size: 0.99rem; /* 0.94rem -> 0.99rem */
  font-weight: 560;
}

.site-nav a.is-active {
  border-radius: 999px;
}

.language-switch {
  min-width: 2.46rem; /* 2.3rem -> 2.46rem */
  min-height: 2.46rem; /* 2.3rem -> 2.46rem */
  padding: 0.52rem 0.72rem; /* 0.45rem 0.63rem -> 0.52rem 0.72rem */
  font-size: 0.79rem; /* 0.75rem -> 0.79rem */
}

.site-header.is-condensed .site-header__inner {
  min-height: 4.08rem; /* 3.85rem -> 4.08rem */
  padding: 0.28rem 0.9rem; /* 0.24rem 0.84rem -> 0.28rem 0.9rem */
}

@media (max-width: 1080px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .site-header__inner {
    min-height: 3.9rem; /* 3.7rem -> 3.9rem */
    padding: 0.28rem 0.76rem; /* 0.24rem 0.7rem -> 0.28rem 0.76rem */
    gap: 0.78rem; /* 0.7rem -> 0.78rem */
  }

  .brand__mark {
    width: 2.62rem; /* 2.48rem -> 2.62rem */
    height: 2.62rem; /* 2.48rem -> 2.62rem */
  }

  .brand__mark img {
    width: 1.6rem; /* 1.5rem -> 1.6rem */
    height: 1.6rem; /* 1.5rem -> 1.6rem */
  }

  .brand__text strong {
    font-size: 1.3rem; /* 1.22rem -> 1.3rem */
  }

  .brand__text span {
    font-size: 0.66rem; /* 0.64rem -> 0.66rem */
  }

  .site-nav {
    border-inline-start: 0;
    padding-inline-start: 0;
    gap: 0.45rem; /* 0.4rem -> 0.45rem */
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 0.75rem);
    top: 0.4rem;
  }

  .site-header__inner {
    min-height: 3.52rem; /* 3.35rem -> 3.52rem */
    padding: 0.22rem 0.6rem; /* 0.18rem 0.55rem -> 0.22rem 0.6rem */
  }

  .site-nav {
    top: calc(100% + 0.45rem);
  }

  .site-nav a {
    font-size: 0.95rem; /* 0.93rem -> 0.95rem */
  }

  .language-switch {
    min-width: 2.2rem; /* 2.1rem -> 2.2rem */
    min-height: 2.2rem; /* 2.1rem -> 2.2rem */
    font-size: 0.74rem; /* 0.72rem -> 0.74rem */
  }
}

/* HOME IMAGE UPGRADE: SERVICE CARDS + SHOWCASE + SUBTLE OVERLAYS */
body[data-page="home"] .hero__backdrop {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 10% 5%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, rgba(11, 42, 38, 0.16), rgba(16, 84, 72, 0.07)),
    url("../assets/network.jpeg") center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

body[data-page="home"] .section--showcase {
  padding-top: 0.5rem;
}

body[data-page="home"] .showcase-banner {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 46px -32px rgba(7, 24, 22, 0.3);
}

body[data-page="home"] .showcase-banner__media {
  margin: 0;
  min-height: clamp(240px, 35vw, 430px);
}

body[data-page="home"] .showcase-banner__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 30px;
  transform: none;
  transition: transform 0.6s ease;
}

body[data-page="home"] .showcase-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 22, 20, 0.08) 10%, rgba(8, 22, 20, 0.5) 100%),
    linear-gradient(120deg, rgba(20, 132, 109, 0.14) 0%, rgba(20, 132, 109, 0) 55%);
  pointer-events: none;
}

body[data-page="home"] .showcase-banner__content {
  position: absolute;
  inset-inline-start: clamp(1.2rem, 3vw, 2.2rem);
  inset-inline-end: clamp(1.2rem, 3vw, 2.2rem);
  bottom: clamp(1.1rem, 2.8vw, 2rem);
  z-index: 2;
  max-width: min(760px, 100%);
  color: #f5fcf8;
}

body[data-page="home"] .showcase-banner__content .eyebrow {
  color: rgba(235, 250, 244, 0.9);
}

body[data-page="home"] .showcase-banner__content h2 {
  margin: 0.2rem 0 0.55rem;
  color: #ffffff;
  text-wrap: balance;
}

body[data-page="home"] .showcase-banner__content p {
  margin: 0;
  color: rgba(235, 250, 244, 0.94);
}

body[data-page="home"] .showcase-banner:hover .showcase-banner__media img {
  transform: none;
}

body[data-page="home"] .service-card {
  overflow: hidden;
}

body[data-page="home"] .card-image,
body[data-page="home"] .service-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0 0 1rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 245, 242, 0.92));
}

body[data-page="home"] .card-image img,
body[data-page="home"] .service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  transition: transform 0.35s ease;
}

body[data-page="home"] .service-card:hover .card-image img,
body[data-page="home"] .service-card:hover .service-card__image img {
  transform: none;
}

body[data-page="home"] .hero-scene__device img,
body[data-page="home"] .showcase-banner__media img {
  object-fit: contain;
}

@media (max-width: 980px) {
  body[data-page="home"] .section--showcase {
    padding-top: 0.2rem;
  }

  body[data-page="home"] .showcase-banner,
  body[data-page="home"] .showcase-banner__media img,
  body[data-page="home"] .showcase-banner::after {
    border-radius: 24px;
  }

  body[data-page="home"] .showcase-banner__media {
    min-height: clamp(210px, 50vw, 320px);
  }

  body[data-page="home"] .showcase-banner__content h2 {
    font-size: clamp(1.24rem, 3vw, 1.64rem);
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .showcase-banner,
  body[data-page="home"] .showcase-banner__media img,
  body[data-page="home"] .showcase-banner::after {
    border-radius: 20px;
  }

  body[data-page="home"] .showcase-banner__content {
    bottom: 1rem;
  }

  body[data-page="home"] .card-image,
  body[data-page="home"] .service-card__image {
    margin-bottom: 0.85rem;
    border-radius: 16px;
  }

  body[data-page="home"] .card-image img,
  body[data-page="home"] .service-card__image img {
    border-radius: 16px;
  }
}

/* Final fix: hero CTA alignment + stable local image mappings */
body[data-page="home"] .hero__actions,
body[data-page="services"] .hero__actions {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
}

body[data-page="home"] .hero__actions .button,
body[data-page="services"] .hero__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 999px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

body[data-page="home"] .hero__actions .button--primary,
body[data-page="services"] .hero__actions .button--primary {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: transparent;
}

body[data-page="home"] .hero__actions .button--secondary,
body[data-page="services"] .hero__actions .button--secondary {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(14, 59, 54, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body[data-page="home"] .hero__actions .button--primary:hover,
body[data-page="home"] .hero__actions .button--primary:focus-visible,
body[data-page="services"] .hero__actions .button--primary:hover,
body[data-page="services"] .hero__actions .button--primary:focus-visible {
  background: var(--color-primary-strong);
}

body[data-page="home"] .hero__actions .button--secondary:hover,
body[data-page="home"] .hero__actions .button--secondary:focus-visible,
body[data-page="services"] .hero__actions .button--secondary:hover,
body[data-page="services"] .hero__actions .button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(14, 59, 54, 0.3);
}

body[data-page="home"] .client-card__media,
body[data-page="services"] .service-media {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #eef4f1;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 245, 242, 0.92));
}

body[data-page="home"] .client-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: contain;
}

body[data-page="services"] .service-media {
  display: grid;
  align-items: end;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 0.95rem;
  background-size: contain;
}

body[data-page="home"] .client-card__img,
body[data-page="services"] .service-media__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body[data-page="services"] .service-media__img {
  position: absolute;
  inset: 0;
  padding: 0.65rem;
  z-index: 0;
}

body[data-page="services"] .service-media::before,
body[data-page="services"] .service-media::after {
  z-index: 1;
}

body[data-page="services"] .service-media__label {
  position: relative;
  z-index: 2;
  font-weight: 700;
}

body[data-page="home"] .client-card--retail .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.18), rgba(14, 59, 54, 0.03)),
    url("../assets/index.jpg");
}

body[data-page="home"] .client-card--restaurant .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(200, 163, 92, 0.22), rgba(14, 59, 54, 0.04)),
    url("../assets/restaurant.jpeg");
}

body[data-page="home"] .client-card--pharmacy .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.16), rgba(255, 255, 255, 0.08)),
    url("../assets/pharmacy.jpeg");
}

body[data-page="home"] .client-card--supermarket .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(200, 163, 92, 0.18), rgba(255, 255, 255, 0.08)),
    url("../assets/index.jpg");
}

body[data-page="home"] .client-card--bakery .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.14), rgba(200, 163, 92, 0.14)),
    url("../assets/bakery.jpeg");
}

body[data-page="home"] .client-card--clinic .client-card__media {
  background-image:
    linear-gradient(135deg, rgba(14, 59, 54, 0.16), rgba(200, 163, 92, 0.1)),
    url("../assets/pharmacy.jpeg");
}

body[data-page="services"] .service-media--pharmacy {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/pharmacy.jpeg");
}

body[data-page="services"] .service-media--supermarket {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/index.jpg");
}

body[data-page="services"] .service-media--bakery {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/bakery.jpeg");
}

body[data-page="services"] .service-media--restaurant {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/restaurant.jpeg");
}

body[data-page="services"] .service-media--hardware {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/hardware.jpeg");
}

body[data-page="services"] .service-media--network {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/network.jpeg");
}

body[data-page="services"] .service-media--cctv {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 21, 0.02), rgba(8, 24, 21, 0.45)),
    url("../assets/camera.jpeg");
}

/* Arabic home: force text alignment to right without flipping layout */
html[dir="rtl"] body[data-page="home"] .hero__content,
html[dir="rtl"] body[data-page="home"] .hero__content .eyebrow,
html[dir="rtl"] body[data-page="home"] .hero__content h1,
html[dir="rtl"] body[data-page="home"] .hero__content .hero__lead,
html[dir="rtl"] body[data-page="home"] .hero-trust-pill,
html[dir="rtl"] body[data-page="home"] .hero-clients__intro,
html[dir="rtl"] body[data-page="home"] .section-heading,
html[dir="rtl"] body[data-page="home"] .section-heading h2,
html[dir="rtl"] body[data-page="home"] .section-heading__text,
html[dir="rtl"] body[data-page="home"] .trust-card,
html[dir="rtl"] body[data-page="home"] .service-card,
html[dir="rtl"] body[data-page="home"] .split-banner,
html[dir="rtl"] body[data-page="home"] .contact-cta {
  text-align: right !important;
  unicode-bidi: plaintext;
}

/* Arabic home: explicit hero mirroring (right-to-left flow) */
html[lang="ar"][dir="rtl"] body[data-page="home"] .hero__grid {
  direction: rtl !important;
}

@media (min-width: 1081px) {
  html[lang="ar"][dir="rtl"] body[data-page="home"] .hero__grid {
    grid-template-areas: "media content" !important;
  }

  html[lang="ar"][dir="rtl"] body[data-page="home"] .hero__content {
    grid-area: content !important;
    justify-self: end;
  }

  html[lang="ar"][dir="rtl"] body[data-page="home"] .hero-scene,
  html[lang="ar"][dir="rtl"] body[data-page="home"] .hero-media {
    grid-area: media !important;
    justify-self: start;
  }
}

html[lang="ar"][dir="rtl"] body[data-page="home"] .hero__actions,
html[lang="ar"][dir="rtl"] body[data-page="home"] .hero-trust-row {
  flex-direction: row-reverse !important;
}

html[lang="ar"][dir="rtl"] body[data-page="home"] .site-header__inner {
  direction: rtl !important;
}

html[lang="ar"][dir="rtl"] body[data-page="home"] .site-nav {
  direction: rtl !important;
}

/* Keep direction semantic without forcing every nested element */
html[lang="ar"][dir="rtl"] body {
  direction: rtl;
}

/* Global no-crop image policy: keep full image visible inside its box */
.hero-media img,
.hero-scene__device img,
.showcase-banner__media img,
.client-card__img,
.service-media__img,
.card-image img,
.service-card__image img,
.service-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.hero-media,
.hero-scene__device,
.showcase-banner__media,
.client-card__media,
.service-media,
.card-image,
.service-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

/* Flexible container overrides to avoid clipping from fixed image heights */
body[data-page="home"] .showcase-banner__media {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 10;
}

.service-media {
  min-height: 0 !important;
  height: auto !important;
}

.showcase-banner__media img {
  min-height: 0 !important;
}

/* Typography consistency patch */
body {
  font-size: 0.98rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(1.85rem, 3.2vw, 3.4rem);
  line-height: 1.1;
}

.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.14;
}

.hero__lead,
.page-hero p,
.support-copy p,
.contact-copy p,
.info-card p,
.service-card p,
.benefit-card p,
.support-panel p,
.site-footer__summary,
.trust-card p,
.detail-card p,
.service-detail-card p,
.content-grid p,
.split-banner p,
.contact-cta p,
.section-heading__text {
  font-size: 0.98rem;
  line-height: 1.66;
}

.info-card h3,
.service-card h3,
.benefit-card h3,
.trust-card h3,
.contact-panel h3,
.detail-card h3 {
  font-size: 1.12rem;
}

@media (max-width: 720px) {
  body {
    font-size: 0.96rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
  }
}

/* Navbar micro-interactions */
.site-header {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.site-header.is-mounted {
  opacity: 1;
  transform: translateY(0);
}

.site-nav a {
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(14, 59, 54, 0.07);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(14, 59, 54, 0.08);
  }
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--color-primary);
  background: rgba(14, 59, 54, 0.14);
  box-shadow:
    0 8px 20px -16px rgba(8, 24, 21, 0.5),
    inset 0 0 0 1px rgba(14, 59, 54, 0.14);
}

.language-switch {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .language-switch:hover,
  .language-switch:focus-visible {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(14, 59, 54, 0.24);
    box-shadow: 0 10px 20px -18px rgba(8, 24, 21, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.is-mounted,
  .site-nav a,
  .language-switch {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Performance parity: keep reveal animation timings identical across EN/AR */
[data-reveal] {
  transition-duration: 520ms;
  transition-timing-function: ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html[dir="rtl"] [data-reveal] {
  transition-delay: var(--reveal-delay, 0ms);
}

/* Home clients marquee parity between EN (LTR) and AR (RTL) */
@keyframes client-marquee-ltr {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes client-marquee-rtl {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

body[data-page="home"] .client-marquee {
  width: 100%;
  overflow: hidden;
  direction: ltr;
  margin: 0 !important;
  padding: 0 !important;
}

body[data-page="home"] .client-marquee__track {
  direction: ltr !important;
  display: flex !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  margin-inline: 0 !important;
  padding: 0 !important;
  padding-inline: 0 !important;
  gap: 0 !important;
  justify-content: flex-start !important;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
  animation: client-marquee-ltr var(--marquee-duration) linear infinite;
  will-change: transform;
}

body[data-page="home"] .client-marquee__group {
  direction: ltr !important;
  display: flex !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  margin: 0 !important;
  margin-inline: 0 !important;
  padding: 0 !important;
  padding-inline: 0 !important;
  gap: var(--client-gap) !important;
  justify-content: flex-start !important;
  align-items: center;
}

body[data-page="home"] .client-marquee .client-card {
  flex: 0 0 14.8rem;
  width: 14.8rem;
  margin: 0 !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
  text-align: left !important;
  transform: none !important;
}

body[data-page="home"] .client-marquee .client-card__media {
  width: 100%;
}

body[data-page="home"] .client-marquee .client-card__img {
  width: 100%;
  height: 100%;
  max-width: var(--client-logo-width);
  max-height: var(--client-logo-height);
  margin: 0 auto;
  object-fit: contain;
}

html[dir="rtl"] body[data-page="home"] .client-marquee__track {
  direction: ltr !important;
  animation-name: client-marquee-rtl !important;
  animation-direction: normal !important;
}

body[data-page="home"] .client-marquee .client-card:hover {
  transform: none !important;
}

/* FINAL Home hero visual correction */
body[data-page="home"] .hero {
  padding-top: 2.2rem;
  padding-bottom: 2rem;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
}

body[data-page="home"] .hero__grid {
  align-items: center;
  transform: translateY(-55px);
}

body[data-page="home"] .hero h1 {
  font-size: clamp(2rem, 3.35vw, 3.55rem);
  line-height: 1.08;
}

@media (min-width: 1081px) {
  body[data-page="home"] .hero-media.hero-scene {
    max-width: 640px;
  }

  body[data-page="home"] .hero-scene__device {
    width: min(100%, 640px);
    max-width: 640px;
  }

  body[data-page="home"] .hero-scene__device img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  body[data-page="home"] .hero__grid {
    transform: none;
  }
}

/* Support page single-card layout after form removal */
body[data-page="support"] .support-grid.support-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 62rem;
  margin-inline: auto;
  align-items: stretch;
}

body[data-page="support"] .support-grid.support-grid--single .support-copy {
  max-width: none;
}

/* Home hero text spacing fix */
body[data-page="home"] .hero__content {
  padding-top: 1.5rem;
}

@media (min-width: 1081px) {
  body[data-page="home"] .hero__content {
    padding-top: 2.2rem;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero__content {
    padding-top: 1.2rem;
  }
}

/* FINAL premium polish layer */
:root {
  --ui-section-space: clamp(3.8rem, 6.6vw, 5.6rem);
  --ui-card-radius: 1rem;
  --ui-media-radius: 0.95rem;
  --ui-card-padding: clamp(1.05rem, 1.2vw, 1.35rem);
  --ui-heading-tight: 1.1;
  --ui-heading-regular: 1.2;
  --ui-body-leading: 1.68;
  --ui-hover-duration: 0.24s;
  --ui-hover-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ui-card-shadow: 0 10px 28px rgba(14, 59, 54, 0.08);
  --ui-card-shadow-hover: 0 14px 34px rgba(14, 59, 54, 0.12);
  --ui-service-image-ratio: 4 / 3;
  --ui-client-image-ratio: 16 / 10;
}

/* Spacing consistency */
.section {
  padding-block: var(--ui-section-space);
}

.services-grid,
.trust-grid,
.support-grid,
.contact-grid,
.content-grid {
  gap: clamp(1.3rem, 2.3vw, 2rem);
}

/* Typography consistency */
.hero h1,
.page-hero h1 {
  line-height: var(--ui-heading-tight);
  font-weight: 700;
}

.section-heading h2,
.support-copy h2,
.contact-copy h2,
.contact-cta h2,
.split-banner h2,
.content-grid h2 {
  line-height: var(--ui-heading-regular);
  font-weight: 700;
}

.info-card h3,
.service-card h3,
.benefit-card h3,
.trust-card h3,
.contact-panel h3,
.detail-card h3 {
  line-height: 1.3;
  font-weight: 650;
}

p,
.service-card p,
.trust-card p,
.contact-cta p,
.section-heading__text {
  line-height: var(--ui-body-leading);
}

/* Unified media wrapper system */
.image-wrapper,
body[data-page="home"] .card-image,
body[data-page="home"] .service-card__image,
body[data-page="services"] .service-media,
body[data-page="home"] .client-card__media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--ui-media-radius);
}

body[data-page="home"] .card-image,
body[data-page="home"] .service-card__image,
body[data-page="services"] .service-media {
  aspect-ratio: var(--ui-service-image-ratio);
}

body[data-page="home"] .client-card__media {
  aspect-ratio: var(--ui-client-image-ratio);
}

.image-wrapper img,
body[data-page="home"] .card-image img,
body[data-page="home"] .service-card__image img,
body[data-page="services"] .service-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="home"] .client-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card polish */
.card,
.service-card,
.trust-card,
.contact-cta,
.support-panel,
.contact-panel,
.detail-card,
.service-detail-card {
  border-radius: var(--ui-card-radius);
}

.service-card,
.trust-card,
.contact-cta {
  padding: var(--ui-card-padding);
  box-shadow: var(--ui-card-shadow);
  transition: transform var(--ui-hover-duration) var(--ui-hover-ease), box-shadow var(--ui-hover-duration) var(--ui-hover-ease);
}

.service-card:hover,
.trust-card:hover,
.contact-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--ui-card-shadow-hover);
}

/* Button system consistency */
.button,
button.button {
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-ease),
    box-shadow var(--ui-hover-duration) var(--ui-hover-ease),
    background-color var(--ui-hover-duration) var(--ui-hover-ease),
    border-color var(--ui-hover-duration) var(--ui-hover-ease),
    color var(--ui-hover-duration) var(--ui-hover-ease);
}

.button:hover,
.button:focus-visible,
button.button:hover,
button.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Subtle navigation micro-interaction */
.site-nav a {
  transition:
    color var(--ui-hover-duration) var(--ui-hover-ease),
    background-color var(--ui-hover-duration) var(--ui-hover-ease),
    transform var(--ui-hover-duration) var(--ui-hover-ease);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: translateY(-1px);
  }
}

/* Keep layout stable with intrinsic image sizing */
img {
  max-width: 100%;
  height: auto;
}

/* Motion accessibility and perceived smoothness */
@media (prefers-reduced-motion: reduce) {
  .button,
  .site-nav a,
  .service-card,
  .trust-card,
  .contact-cta {
    transition-duration: 0.01ms;
  }

  .service-card:hover,
  .trust-card:hover,
  .contact-cta:hover,
  .button:hover,
  .button:focus-visible,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: none;
  }
}

/* Services cards cleanup polish */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* FINAL global image system */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero images */
.hero-media,
.hero-scene__device {
  max-width: 640px;
}

.hero-media img,
.hero-scene__device img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Service images */
.service-card__image,
.service-media,
.card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
}

.service-card__image img,
.service-media img,
.card-image img,
.service-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  max-height: none;
  padding: 0;
  transform: none;
}

.service-media__img {
  position: absolute;
  inset: 0;
}

body[data-page="services"] .service-detail-card:hover .service-media,
body[data-page="services"] .service-card--detailed:hover .service-media,
.service-card:hover .service-media,
.service-detail-card:hover .service-media {
  transform: none;
}

/* Client and smaller images */
.client-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
}

.client-card__media img,
.client-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Services page alignment cleanup */
body[data-page="services"] .service-section,
body[data-page="services"] .service-block,
body[data-page="services"] .service-detail-grid,
body[data-page="services"] .about-grid {
  align-items: center;
  gap: 2rem;
}

body[data-page="services"] .service-detail-card,
body[data-page="services"] .service-card--detailed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Premium micro-hover for service imagery */
.service-card__image img,
.service-media img,
.service-media__img {
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img,
.service-card:hover .service-media img,
.service-card:hover .service-media__img,
.service-detail-card:hover .service-media img,
.service-detail-card:hover .service-media__img {
  transform: scale(1.04);
}

/* FINAL support/contact communication hub refresh */
body[data-page="support"] .channel-grid,
body[data-page="contact"] .channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

body[data-page="support"] .channel-grid--support {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body[data-page="support"] .channel-card,
body[data-page="contact"] .channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: 0 14px 28px rgba(8, 31, 29, 0.08);
}

body[data-page="support"] .channel-card h2,
body[data-page="contact"] .channel-card h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
}

body[data-page="support"] .channel-card p,
body[data-page="contact"] .channel-card p {
  margin: 0;
  color: #395652;
}

body[data-page="support"] .channel-card .button,
body[data-page="contact"] .channel-card .button {
  margin-top: auto;
  align-self: flex-start;
}

body[data-page="support"] .channel-meta,
body[data-page="contact"] .channel-meta {
  font-weight: 600;
  color: #0e3b36;
}

body[data-page="support"] .channel-icon,
body[data-page="contact"] .channel-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 59, 54, 0.1);
  color: #0e3b36;
}

body[data-page="support"] .channel-icon svg,
body[data-page="contact"] .channel-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

body[data-page="support"] .social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

body[data-page="support"] .social-card {
  background: #ffffff;
  border: 1px solid rgba(14, 59, 54, 0.1);
  border-radius: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body[data-page="support"] .social-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

body[data-page="support"] .social-card p {
  margin: 0;
  color: #395652;
}

body[data-page="support"] .social-card a {
  color: #0e3b36;
  font-weight: 600;
  text-decoration: none;
}

body[data-page="support"] .social-card a:hover,
body[data-page="support"] .social-card a:focus-visible {
  text-decoration: underline;
}

body[data-page="contact"] .business-note {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 1rem;
  border: 1px solid rgba(14, 59, 54, 0.12);
  box-shadow: 0 12px 26px rgba(8, 31, 29, 0.08);
}

body[data-page="contact"] .business-note h2 {
  margin: 0 0 0.7rem;
}

body[data-page="contact"] .business-note p {
  margin: 0;
  color: #395652;
}

body[data-page="contact"] .business-note .button {
  margin-top: 1rem;
}

html[dir="rtl"] body[data-page="support"] .channel-card .button,
html[dir="rtl"] body[data-page="contact"] .channel-card .button {
  align-self: flex-end;
}

@media (max-width: 680px) {
  body[data-page="support"] .channel-grid,
  body[data-page="contact"] .channel-grid,
  body[data-page="support"] .social-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL RTL layout mirror fix */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .services-grid,
html[dir="rtl"] .contact-methods,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .support-grid,
html[dir="rtl"] .trust-grid,
html[dir="rtl"] body[data-page="support"] .channel-grid,
html[dir="rtl"] body[data-page="contact"] .channel-grid {
  direction: rtl;
}

html[dir="rtl"] .contact-grid {
  flex-direction: row-reverse;
}

html[dir="rtl"] body[data-page="contact"] .channel-grid {
  direction: rtl;
}

html[dir="rtl"] .contact-card,
html[dir="rtl"] .support-card,
html[dir="rtl"] body[data-page="support"] .channel-card,
html[dir="rtl"] body[data-page="contact"] .channel-card {
  align-items: flex-start;
  text-align: right;
}

/* SAFE Arabic nav tabs order fix */
html[dir="rtl"] .site-nav {
  direction: rtl;
}

html[dir="rtl"] .site-nav ul,
html[dir="rtl"] .site-nav__list,
html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  body[data-page="home"] .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  body[data-page="home"] .hero-media,
  body[data-page="home"] .hero-scene {
    max-width: 100%;
  }

  body[data-page="home"] .hero-scene__device {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  body[data-page="home"] .hero-scene__device img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    transform: scale(0.88);
  }

  html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 1rem;
  }
}
