/* ==========================================================================
   MAS Pulse OS — cinematic app shell
   Mobile-first. Not a brochure. A terminal you hold in your hand.
   ========================================================================== */

:root {
  --mas-bg: #f6f8fc;
  --mas-bg-2: #ffffff;
  --mas-surface: #ffffff;
  --mas-surface-2: #eef1f8;
  --mas-ink: #0f172a;
  --mas-ink-2: #1e293b;
  --mas-ink-3: #334155;
  --mas-glass: rgba(255, 255, 255, 0.88);
  --mas-glass-2: rgba(255, 255, 255, 0.72);
  --mas-stroke: rgba(15, 23, 42, 0.08);
  --mas-stroke-2: rgba(15, 23, 42, 0.12);
  --mas-text: #0f172a;
  --mas-muted: #5c6578;
  --mas-faint: #8b95a8;
  --mas-signal: #e11d48;
  --mas-signal-2: #fb7185;
  --mas-cyan: #0e7490;
  --mas-violet: #7c3aed;
  --mas-amber: #d97706;
  --mas-ok: #059669;
  --mas-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --mas-shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.12);
  --mas-radius: 28px;
  --mas-radius-sm: 18px;
  --mas-topbar-h: 64px;
  --mas-dock-bar-h: 68px;
  --mas-dock-bottom: 10px;
  --mas-dock-inset: calc(var(--mas-dock-bottom) + var(--mas-dock-bar-h) + env(safe-area-inset-bottom, 0px));
  --mas-dock-h: calc(var(--mas-dock-inset) + 12px);
  --mas-pad: clamp(18px, 2.8vw, 52px);
  --mas-section-radius: 0px;
  --mas-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mas-font-display: "Plus Jakarta Sans", "Cairo", sans-serif;
  --mas-font-body: "Figtree", "Cairo", sans-serif;
  color-scheme: light;
}

html.rtl,
html[dir="rtl"],
body.rtl {
  --mas-font-display: "Cairo", sans-serif;
  --mas-font-body: "Cairo", "Figtree", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--mas-bg);
}

html,
body.common-front {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(900px 520px at 92% -5%, rgba(225, 29, 72, 0.07), transparent 55%),
    radial-gradient(700px 420px at -5% 18%, rgba(14, 116, 144, 0.06), transparent 50%),
    radial-gradient(600px 360px at 50% 100%, rgba(124, 58, 237, 0.05), transparent 50%),
    var(--mas-bg) !important;
  color: var(--mas-text);
  font-family: var(--mas-font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.common-front {
  padding-top: calc(var(--mas-topbar-h) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(var(--mas-dock-h) + env(safe-area-inset-bottom, 0px) + 12px);
}

body.common-front p,
body.common-front h1,
body.common-front h2,
body.common-front h3,
body.common-front h4,
body.common-front h5,
body.common-front h6 {
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--mas-signal);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--mas-ease), opacity 0.25s var(--mas-ease), transform 0.25s var(--mas-ease);
}

button,
.btn,
.header__action-btn,
a.btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Grain + ambient mesh */
body.common-front::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body.common-front::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  right: -12vw;
  top: 12vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: masOrb 18s ease-in-out infinite;
}

@keyframes masOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-8vw, 10vh) scale(1.15);
  }
}

.mas-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Hide legacy chrome
   -------------------------------------------------------------------------- */
body.common-front header.header,
body.common-front .header-burger,
body.common-front .fixed-sidebar-menu-overlay,
body.common-front .fixed-sidebar-menu-holder,
body.common-front nav#nav-1,
body.common-front nav#nav-2,
body.common-front nav#nav-3,
body.common-front .hero__scroll,
body.common-front .pace-cover+.header {
  display: none !important;
}

body.common-front .shape-group-code {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Topbar — iOS status + island
   -------------------------------------------------------------------------- */
.mas-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: calc(var(--mas-topbar-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 70%, transparent 100%);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--mas-ease), border-color 0.3s var(--mas-ease), box-shadow 0.3s var(--mas-ease);
}

.mas-topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--mas-stroke);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.mas-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mas-brand img,
.mas-brand .logo-front {
  height: 34px !important;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(255, 45, 85, 0.25));
}

.mas-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.18);
  color: var(--mas-ok);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mas-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mas-ok);
  box-shadow: 0 0 0 0 rgba(61, 255, 176, 0.7);
  animation: masPulse 1.8s ease-out infinite;
}

@keyframes masPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 255, 176, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(61, 255, 176, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(61, 255, 176, 0);
  }
}

.mas-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mas-icon-btn,
.mas-lang-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  border: 1px solid var(--mas-stroke);
  background: var(--mas-glass-2);
  color: var(--mas-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.mas-lang-btn {
  width: auto;
  padding: 0 12px;
  gap: 7px;
}

.mas-lang-btn img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.mas-cta-chip {
  display: none;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mas-signal), var(--mas-signal-2));
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 45, 85, 0.32);
}

/* --------------------------------------------------------------------------
   Bottom dock
   -------------------------------------------------------------------------- */
.mas-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--mas-dock-bottom) + env(safe-area-inset-bottom, 0px));
  z-index: 110;
  height: var(--mas-dock-bar-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 6px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mas-stroke-2);
  box-shadow: var(--mas-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
}

.mas-dock a,
.mas-dock button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mas-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 56px;
  border-radius: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.mas-dock svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mas-dock a.is-active,
.mas-dock button.is-active {
  color: var(--mas-signal);
  background: rgba(225, 29, 72, 0.08);
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.14);
}

.mas-dock a.is-active svg,
.mas-dock button.is-active svg {
  stroke: var(--mas-signal);
}

/* --------------------------------------------------------------------------
   Sheets (language / more)
   -------------------------------------------------------------------------- */
.mas-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--mas-ease);
}

.mas-sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mas-sheet {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: var(--mas-dock-inset);
  z-index: 90;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--mas-stroke-2);
  border-radius: 28px 28px 22px 22px;
  padding: 10px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  transform: translate3d(0, calc(100% + var(--mas-dock-inset) + 40px), 0);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s var(--mas-ease),
    visibility 0s linear 0.38s,
    opacity 0.28s var(--mas-ease);
  box-shadow: var(--mas-shadow-lg);
  max-height: min(72vh, calc(100dvh - var(--mas-dock-inset) - var(--mas-topbar-h) - 24px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mas-sheet.is-open {
  z-index: 120;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    transform 0.38s var(--mas-ease),
    visibility 0s linear 0s,
    opacity 0.28s var(--mas-ease);
}

.mas-sheet__handle {
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.12);
  margin: 6px auto 14px;
}

.mas-sheet h5 {
  margin: 0 0 12px;
  font-family: var(--mas-font-display);
  font-size: 18px;
  font-weight: 800;
}

.mas-sheet a,
.mas-sheet li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
  border: 1px solid var(--mas-stroke);
  font-weight: 700;
}

.mas-sheet ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mas-sheet .menu-description,
.mas-sheet .address-sidebar,
.mas-sheet .header-social-share {
  color: var(--mas-muted);
  font-size: 13px;
  margin-top: 12px;
}

.mas-sheet .header-social-share a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin: 0 6px 0 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Shared atoms
   -------------------------------------------------------------------------- */
.mas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(14, 116, 144, 0.16);
  color: var(--mas-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mas-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mas-cyan);
}

.mas-title {
  font-family: var(--mas-font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 12px;
}

.mas-section {
  position: relative;
  padding: 0;
}

.mas-section>.container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.mas-btn,
body.common-front .btn.btn-style1,
body.common-front .btn.btn-style2,
body.common-front .btn.btn-slider,
body.common-front a.btn.btn-style1,
body.common-front a.btn.btn-style12 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--mas-signal), var(--mas-signal-2)) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.22);
  transition: transform 0.25s var(--mas-ease), box-shadow 0.25s var(--mas-ease);
}

body.common-front .btn.btn-style1:hover,
body.common-front .btn.btn-slider:hover,
body.common-front .btn.btn-style2:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff !important;
}

body.common-front .btn.btn-style2 {
  background: var(--mas-surface) !important;
  color: var(--mas-text) !important;
  box-shadow: none;
  border: 1px solid var(--mas-stroke-2) !important;
}

.mas-ghost {
  background: var(--mas-surface) !important;
  color: var(--mas-text) !important;
  box-shadow: none !important;
  border: 1px solid var(--mas-stroke-2) !important;
}

/* --------------------------------------------------------------------------
   Hero v2 — editorial bento canvas (overrides venor slide + typography)
   -------------------------------------------------------------------------- */
.mas-hero-v2 {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(880px 420px at 88% -8%, rgba(225, 29, 72, 0.06), transparent 58%),
    radial-gradient(640px 360px at -4% 100%, rgba(14, 116, 144, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%) !important;
  max-height: none !important;
}

.mas-hero-v2__track {
  position: relative;
  z-index: 2;
}

.mas-hero-v2__slide,
.slider-inner-venor.mas-hero-v2__slide {
  background: transparent !important;
  padding: 6px 0 4px !important;
  min-height: auto;
  display: block !important;
  max-height: none !important;
}

.mas-hero-v2__shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.mas-hero-v2__canvas {
  display: grid;
  gap: 0;
  min-height: min(68vh, 620px);
  border-radius: var(--mas-section-radius);
  overflow: hidden;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--mas-stroke-2);
  box-shadow: none;
}

.mas-hero-v2__copy-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px var(--mas-pad) 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mas-hero-v2__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mas-hero-v2__index {
  font-family: var(--mas-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mas-faint);
  white-space: nowrap;
}

.mas-hero-v2__index-sep {
  margin: 0 4px;
  opacity: 0.45;
}

.mas-hero-v2__copy {
  flex: 1;
}

.mas-hero-v2__title,
.slider-content h1.mas-hero-v2__title,
.slider-content h1.active.mas-hero-v2__title,
.mas-hero-v2 .slider-content h1 {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(28px, 4.5vw, 50px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.028em !important;
  line-height: 1.12 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: var(--mas-text) !important;
  -webkit-text-fill-color: var(--mas-text) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: none;
}

.mas-hero-v2__title span,
.slider-content h1.mas-hero-v2__title span,
.mas-hero-v2 .slider-content h1 span,
.mas-hero-v2 .slider-content h2 span {
  color: var(--mas-text) !important;
  -webkit-text-fill-color: var(--mas-text) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  display: inline;
  font-weight: inherit !important;
}

.mas-hero-v2__tagline,
.slider-content h2.mas-hero-v2__tagline,
.slider-content p.mas-hero-v2__tagline {
  display: block !important;
  margin: 0 0 10px !important;
  font-size: clamp(16px, 2.8vw, 22px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: var(--mas-cyan) !important;
  letter-spacing: -0.015em;
}

.mas-hero-v2__body,
.mas-hero-v2__body p,
.slider-body.mas-hero-v2__body,
.slider-body.mas-hero-v2__body p {
  color: var(--mas-muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin: 0 0 14px !important;
  max-width: 42rem;
}

.mas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mas-hero-v2__cta,
.mas-hero-v2__cta-alt {
  min-height: 46px !important;
  padding-inline: 20px !important;
  font-weight: 700 !important;
}

.mas-hero-v2__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--mas-stroke);
}

.mas-hero-v2__metric {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--mas-stroke);
}

.mas-hero-v2__metric strong {
  display: block;
  font-family: var(--mas-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--mas-text);
  letter-spacing: -0.02em;
}

.mas-hero-v2__metric span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--mas-muted);
}

.mas-hero-v2__visual-col {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background:
    radial-gradient(circle at 50% 88%, rgba(251, 146, 60, 0.2), transparent 62%),
    linear-gradient(165deg, #eef2f7 0%, #f8fafc 55%, #ffffff 100%);
  overflow: hidden;
}

.mas-hero-v2__visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 29, 72, 0.08), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(14, 116, 144, 0.07), transparent 40%);
}

.mas-hero-v2__live {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
}

html.rtl .mas-hero-v2__live,
body.rtl .mas-hero-v2__live {
  right: auto;
  left: 16px;
}

.mas-hero-v2__product {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0 auto !important;
}

.mas-hero-v2__product img,
.mas-hero-v2__product .slider-img {
  display: block;
  width: 100%;
  max-height: min(52vh, 440px);
  margin: 0 auto;
  padding: 0 !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
  filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.12));
}

.mas-hero-v2__rail {
  position: relative;
  z-index: 3;
  margin-top: 10px;
  border-top: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(12px);
}

.mas-hero-v2__rail .mas-marquee,
.mas-hero-v2__rail .mas-ticker {
  margin: 0;
  border: 0;
}

.mas-hero-v2__dots-host {
  display: flex;
  justify-content: center;
  padding: 0 0 8px;
}

.mas-hero-v2__dots-host .owl-dots {
  margin: 0 !important;
}

.mas-hero-v2 .owl-nav {
  position: absolute;
  left: calc(var(--mas-pad) + 8px);
  right: calc(var(--mas-pad) + 8px);
  bottom: 78px;
  top: auto !important;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.mas-hero-v2 .owl-nav button {
  pointer-events: auto;
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  color: var(--mas-text) !important;
  backdrop-filter: blur(12px);
  box-shadow: var(--mas-shadow);
}

.mas-hero-v2 .owl-nav button:hover {
  background: var(--mas-signal) !important;
  color: #fff !important;
}

@media (min-width: 900px) {
  .mas-hero-v2__canvas {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    min-height: min(62vh, 580px);
  }

  .mas-hero-v2__copy-col {
    padding: 32px var(--mas-pad) 24px;
  }

  .mas-hero-v2__title,
  .slider-content h1.mas-hero-v2__title,
  .mas-hero-v2 .slider-content h1 {
    max-width: 22ch;
  }

  .mas-hero-v2__visual-col {
    min-height: 100%;
    padding: 28px var(--mas-pad);
  }

  .mas-hero-v2 .owl-nav {
    bottom: 86px;
  }
}

@media (max-width: 767px) {
  .mas-hero-v2__canvas {
    min-height: auto;
  }

  .mas-hero-v2__copy-col {
    order: 2;
  }

  .mas-hero-v2__visual-col {
    order: 1;
    min-height: 220px;
    padding: 16px 12px 8px;
  }

  .mas-hero-v2__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mas-hero-v2__metric {
    padding: 8px;
  }

  .mas-hero-v2__metric strong {
    font-size: 15px;
  }

  .mas-hero-v2__metric span {
    font-size: 10px;
  }

  .mas-hero-v2 .owl-nav {
    display: none !important;
  }
}

/* Legacy hero overrides kept for safety */
.slider-venor-section.mas-hero-v2 {
  min-height: auto !important;
  padding: 8px 0 0 !important;
}

.slider-venor-section {
  position: relative;
  min-height: calc(100svh - var(--mas-topbar-h) - var(--mas-dock-h));
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
  max-height: none !important;
}

.slider-venor-section .container,
.slider-inner-venor .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.slider-inner-venor {
  padding: 0 !important;
}

.slider-inner-venor .row {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
}

.slider-inner-venor .col-md-5,
.slider-inner-venor .col-md-7 {
  width: 100%;
  max-width: 100%;
  flex: none;
  padding: 0;
}

.slider-image,
.slider-image-inner {
  position: relative;
  margin: 0 auto 8px;
  width: min(86vw, 360px);
}

.slider-image-inner {
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255, 107, 74, 0.35), transparent 55%),
    #10182c;
  border: 1px solid var(--mas-stroke-2);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.slider-image-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 18px;
  border-radius: 99px;
  background: #05070d;
  z-index: 2;
}

.slider-image-inner img,
.slider-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  padding: 28px 12px 18px;
  transform: none !important;
}

.slider-content {
  text-align: left !important;
  padding: 8px 4px 0 !important;
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

body.rtl .slider-content {
  text-align: right !important;
}

.slider-content h1,
.slider-content h1.active {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(34px, 11vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em;
  line-height: 0.92 !important;
  margin: 0 0 10px !important;
  color: var(--mas-text) !important;
  -webkit-text-fill-color: var(--mas-text) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  position: relative !important;
  left: auto !important;
  opacity: 1 !important;
  transform: none !important;
}

.slider-content h2,
.slider-content h2.active {
  display: none !important;
}

.slider-body,
.slider-body.active {
  color: var(--mas-muted) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  max-width: 40rem;
  margin: 0 0 16px !important;
  opacity: 1 !important;
  transform: none !important;
  position: static !important;
}

.button-slider-b,
.button-slider-b2 {
  display: inline-block;
  margin: 0 8px 8px 0;
}

body.rtl .button-slider-b,
body.rtl .button-slider-b2 {
  margin: 0 0 8px 8px;
}

.slider-venor-section .header-social-share {
  display: none;
}

.slider-venor .owl-nav {
  position: absolute;
  top: 38%;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-venor .owl-nav button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: rgba(5, 7, 13, 0.55) !important;
  border: 1px solid var(--mas-stroke) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--mas-signal) !important;
}

/* Ticker / marquee — pill chip stream */
.mas-ticker {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-block: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mas-ticker__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mas-ink-2);
  background: #fff;
  border-right: 1px solid var(--mas-stroke);
  white-space: nowrap;
}

body.rtl .mas-ticker__badge {
  border-right: 0;
  border-left: 1px solid var(--mas-stroke);
}

.mas-ticker__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mas-ok);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.14);
  animation: masTickerPulse 2.4s ease-in-out infinite;
}

@keyframes masTickerPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.88);
  }
}

.mas-ticker__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.mas-ticker__track,
.mas-marquee__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: masTickerScroll 32s linear infinite;
  padding: 10px 14px;
  will-change: transform;
}

.mas-ticker:hover .mas-ticker__track,
.mas-ticker:hover .mas-marquee__track {
  animation-play-state: paused;
}

.mas-ticker__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mas-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mas-ink-2);
  background: #fff;
  border: 1px solid var(--mas-stroke-2);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  white-space: nowrap;
}

.mas-ticker__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mas-signal);
  flex-shrink: 0;
  opacity: 0.9;
}

.mas-ticker__chip:nth-child(3n + 2)::before {
  background: var(--mas-cyan);
}

.mas-ticker__chip:nth-child(3n)::before {
  background: var(--mas-violet);
}

@keyframes masTickerScroll {
  from {
    transform: translateX(0);
  }

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

body.rtl .mas-ticker__track,
body.rtl .mas-marquee__track {
  animation-name: masTickerScrollRtl;
}

@keyframes masTickerScrollRtl {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mas-ticker__track,
  .mas-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .mas-ticker__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Legacy marquee fallback */
.mas-marquee:not(.mas-ticker) {
  overflow: hidden;
  border-block: 1px solid var(--mas-stroke);
  background: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
}

.mas-marquee:not(.mas-ticker) .mas-marquee__track {
  gap: 28px;
  animation: masTickerScroll 28s linear infinite;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mas-faint);
}

.mas-marquee:not(.mas-ticker) .mas-marquee__track span::after {
  content: none;
}

/* --------------------------------------------------------------------------
   About — bento mosaic + editorial copy
   -------------------------------------------------------------------------- */
.about-section,
.about-us {
  background: transparent !important;
  padding: 0 !important;
}

.mas-about__canvas {
  display: grid;
  gap: 0;
  border-radius: var(--mas-section-radius);
  overflow: hidden;
  background: #fff;
  border: 0;
  border-top: 1px solid var(--mas-stroke-2);
  border-bottom: 1px solid var(--mas-stroke-2);
  box-shadow: none;
}

.mas-about__media {
  position: relative;
  min-height: 320px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 29, 72, 0.07), transparent 42%),
    radial-gradient(circle at 88% 88%, rgba(14, 116, 144, 0.08), transparent 45%),
    linear-gradient(165deg, #f1f5f9 0%, #f8fafc 55%, #ffffff 100%);
}

.mas-about__mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 300px;
  height: 100%;
}

.mas-about__shot {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  background: #e2e8f0;
}

.mas-about__shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.mas-about__shot--hero {
  grid-row: 1 / 3;
  grid-column: 1;
}

.mas-about__shot--top {
  grid-row: 1;
  grid-column: 2;
}

.mas-about__shot--bottom {
  grid-row: 2;
  grid-column: 2;
}

.mas-about__stat {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  width: min(calc(100% - 56px), 220px);
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--mas-signal), #fb7185);
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.28);
}

body.rtl .mas-about__stat {
  left: auto;
  right: 28px;
  text-align: right;
}

.mas-about__stat .nmb-font-about {
  display: block;
  font-family: var(--mas-font-display) !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #fff !important;
  margin: 0 !important;
}

.mas-about__stat .service_summary-about {
  display: block;
  margin: 6px 0 0 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
}

.mas-about__stat .service_summary-about::before {
  display: none !important;
}

.mas-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px var(--mas-pad) 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mas-about__title,
.about-heading2-home.mas-about__title {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(28px, 4.2vw, 42px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--mas-text) !important;
  max-width: none !important;
  text-transform: none;
}

.mas-about__title span,
.about-heading2-home.mas-about__title span {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

.about-heading1-home {
  color: var(--mas-cyan) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  margin: 0 !important;
}

.mas-about__body,
.mas-about__body p,
.about-section .mas-about__body,
.about-section .mas-about__body p {
  color: var(--mas-muted) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  margin: 0 !important;
  max-width: 58ch;
}

.mas-about__body ul,
.about-section .mas-about__body ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.mas-about__body ul li,
.about-section .mas-about__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mas-muted) !important;
}

.mas-about__body ul li::before,
.about-section .mas-about__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mas-signal);
  font-family: inherit;
}

body.rtl .mas-about__body ul li {
  padding-left: 0;
  padding-right: 22px;
}

body.rtl .mas-about__body ul li::before {
  left: auto;
  right: 0;
}

.mas-about__cta {
  align-self: flex-start;
  margin-top: 6px !important;
}

.about-section .col-md-6,
.about-us .col-md-7 {
  max-width: none;
  width: 100%;
}

/* Legacy about polaroid styles — kept for other pages if any */
.item-about-row {
  position: relative;
  min-height: 340px;
  margin-bottom: 18px;
}

.item-about-img1,
.item-about-img2,
.about-img1,
.about-img2,
.about-img3,
.avo-image {
  position: relative !important;
  width: auto !important;
  float: none !important;
}

.about-img3,
.item-about-img2 {
  width: 58% !important;
  margin-left: auto;
  transform: rotate(6deg);
  z-index: 2;
}

.about-img1 {
  position: absolute !important;
  top: 40px;
  left: 0;
  width: 46% !important;
  transform: rotate(-9deg);
  z-index: 3;
}

.about-img2 {
  position: absolute !important;
  bottom: 10px;
  left: 18%;
  width: 42% !important;
  transform: rotate(4deg);
  z-index: 1;
}

.avo-image img,
.about-section img:not(.mas-about__shot img),
.simpleParallax img {
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.exp-about {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: -28px;
  z-index: 4;
  width: min(100%, 280px);
  padding: 16px 18px !important;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.95), rgba(255, 107, 74, 0.9));
  box-shadow: 0 18px 40px rgba(255, 45, 85, 0.28);
  text-align: left !important;
}

body.rtl .exp-about {
  text-align: right !important;
  margin-right: auto;
}

.nmb-font-about {
  font-family: var(--mas-font-display) !important;
  font-size: 42px !important;
  line-height: 0.9 !important;
  color: #fff !important;
  margin: 0 !important;
}

.service_summary-about {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 6px 0 0 !important;
}

.about-heading2-home {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(26px, 5vw, 44px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
  line-height: 1.1 !important;
  margin: 0 0 14px !important;
  color: var(--mas-text) !important;
}

.about-section p,
.about-us p,
.about-section .col-md-6,
.about-us .col-md-7 {
  color: var(--mas-muted) !important;
  font-size: 15px;
  line-height: 1.75;
}

.about-section ul,
.about-us ul {
  padding-left: 18px;
  color: var(--mas-muted);
}

body.rtl .about-section ul,
body.rtl .about-us ul {
  padding-left: 0;
  padding-right: 18px;
}

@media (min-width: 900px) {
  .mas-about__canvas {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 460px;
  }

  body.rtl .mas-about__canvas {
    direction: rtl;
  }

  body.rtl .mas-about__content {
    order: 1;
    direction: rtl;
    text-align: right;
  }

  body.rtl .mas-about__media {
    order: 2;
  }

  .mas-about__media {
    min-height: 100%;
    padding: 18px;
  }

  .mas-about__mosaic {
    min-height: 420px;
  }

  .mas-about__content {
    padding: 36px var(--mas-pad);
  }
}

@media (max-width: 767px) {
  .mas-about__canvas {
    grid-template-columns: 1fr;
  }

  .mas-about__content {
    order: 1;
  }

  .mas-about__media {
    order: 2;
    min-height: 280px;
  }

  .mas-about__mosaic {
    min-height: 260px;
  }

  .mas-about__stat {
    left: 22px;
    bottom: 18px;
    width: min(calc(100% - 44px), 200px);
  }

  body.rtl .mas-about__stat {
    right: 22px;
  }

  .mas-about__body,
  .mas-about__body p {
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   Vision / Services — full-width bento board
   -------------------------------------------------------------------------- */
.services-section {
  background: transparent !important;
  padding: 0 !important;
}

.mas-vision__canvas,
.mas-work__canvas {
  border-radius: var(--mas-section-radius);
  overflow: hidden;
  background: #fff;
  border: 0;
  border-top: 1px solid var(--mas-stroke-2);
  border-bottom: 1px solid var(--mas-stroke-2);
  box-shadow: none;
}

.mas-vision__head,
.mas-work__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--mas-pad) 18px;
  border-bottom: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-bottom: 0 !important;
}

.mas-vision__head-note {
  margin: 0;
  max-width: 22ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--mas-muted);
  text-align: right;
}

body.rtl .mas-vision__head-note {
  text-align: left;
}

.mas-vision__title,
.mas-work__title,
.mas-section-head .mas-title {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(26px, 4vw, 40px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
  color: var(--mas-text) !important;
  margin: 0 !important;
}

.mas-vision__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.mas-vision__card {
  position: relative;
  padding: 22px 20px 24px;
  border-top: 1px solid var(--mas-stroke);
  background: #fff;
  transition: background 0.25s var(--mas-ease);
}

.mas-vision__card:first-child {
  border-top: 0;
}

.mas-vision__card:hover {
  background: #f8fafc;
}

.mas-vision__card:nth-child(1) {
  --mas-vision-accent: var(--mas-cyan);
}

.mas-vision__card:nth-child(2) {
  --mas-vision-accent: var(--mas-signal);
}

.mas-vision__card:nth-child(3) {
  --mas-vision-accent: var(--mas-violet);
}

.mas-vision__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mas-vision-accent, var(--mas-cyan)), transparent);
  opacity: 0.85;
}

.mas-vision__index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mas-faint);
}

body.rtl .mas-vision__index {
  right: auto;
  left: 20px;
}

.mas-vision__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mas-vision__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mas-surface-2);
  border: 1px solid var(--mas-stroke);
}

.mas-vision__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mas-vision__card-title {
  font-family: var(--mas-font-display);
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: var(--mas-text) !important;
  margin: 0 0 8px !important;
  text-transform: none;
}

.mas-vision__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mas-muted) !important;
  max-width: 42ch;
}

/* --------------------------------------------------------------------------
   Work / Projects — asymmetric bento grid
   -------------------------------------------------------------------------- */
.portfolio-section,
.portfolio-section-page {
  background: transparent !important;
  padding: 0 !important;
}

.mas-work__head {
  display: block;
  padding-bottom: 20px;
}

.mas-work__subtitle {
  margin-top: 8px !important;
  max-width: 52ch;
}

.mas-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 var(--mas-pad) 16px;
}

.mas-work__card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mas-stroke-2);
  box-shadow: var(--mas-shadow);
  transition: transform 0.25s var(--mas-ease), box-shadow 0.25s var(--mas-ease);
}

.mas-work__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mas-shadow-lg);
}

.mas-work__media {
  display: block;
  overflow: hidden;
  background: var(--mas-surface-2);
}

.mas-work__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 320px;
  object-fit: cover;
  transition: transform 0.45s var(--mas-ease);
}

.mas-work__card:hover .mas-work__media img {
  transform: scale(1.03);
}

.mas-work__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mas-work__name {
  font-family: var(--mas-font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--mas-text) !important;
  text-decoration: none;
}

.mas-work__tag {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mas-cyan);
  background: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(14, 116, 144, 0.12);
}

@media (min-width: 768px) {
  .mas-vision__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }

  .mas-vision__card {
    border-top: 0;
    border-left: 1px solid var(--mas-stroke);
    min-height: 280px;
  }

  .mas-vision__card:first-child {
    border-left: 0;
  }

  body.rtl .mas-vision__card {
    border-left: 0;
    border-right: 1px solid var(--mas-stroke);
  }

  body.rtl .mas-vision__card:first-child {
    border-right: 0;
  }

  .mas-work__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    padding: 0 var(--mas-pad) 18px;
  }

  .mas-work__card:nth-child(1) {
    grid-column: span 7;
  }

  .mas-work__card:nth-child(2) {
    grid-column: span 5;
  }

  .mas-work__card:nth-child(3) {
    grid-column: span 5;
  }

  .mas-work__card:nth-child(4) {
    grid-column: span 7;
  }

  .mas-work__card:nth-child(1) .mas-work__media img,
  .mas-work__card:nth-child(4) .mas-work__media img {
    min-height: 260px;
    max-height: 340px;
  }
}

@media (min-width: 900px) {
  .mas-vision__head,
  .mas-work__head,
  .mas-partners__head {
    padding: 28px var(--mas-pad) 22px;
  }

  .mas-vision__card {
    padding: 26px 24px 28px;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .mas-vision__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mas-vision__head-note {
    max-width: none;
    text-align: left;
  }

  body.rtl .mas-vision__head-note {
    text-align: right;
  }

  .mas-work__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Legacy carousel cards — other pages */
.services-section h3,
.portfolio-section h3,
.testimonial-section h3,
.blog-section-title,
.members-heading1,
.iframe-contact h3,
.pricing-elements h2,
.breadcrumb-title {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(28px, 8vw, 52px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
  line-height: 0.95 !important;
  color: var(--mas-text) !important;
  text-align: left !important;
  margin: 0 0 18px !important;
}

.services-section.mas-vision h3,
.portfolio-section.mas-work h3,
.mas-vision__title,
.mas-work__title {
  font-weight: 600 !important;
  line-height: 1.12 !important;
  font-size: clamp(26px, 4vw, 40px) !important;
}

body.rtl .services-section h3,
body.rtl .portfolio-section h3,
body.rtl .testimonial-section h3,
body.rtl .blog-section-title,
body.rtl .members-heading1,
body.rtl .breadcrumb-title {
  text-align: right !important;
}

.card-parent,
.card-inner-row,
.card.featured {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.card.featured {
  position: relative;
  min-height: 280px;
  padding: 22px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
  border: 1px solid var(--mas-stroke) !important;
  overflow: hidden;
}

.card.featured::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.35), transparent 70%);
  pointer-events: none;
}

.card-img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.card.featured .heading {
  font-family: var(--mas-font-display);
  font-size: 22px !important;
  font-weight: 800;
  color: var(--mas-text) !important;
  margin: 0 0 8px;
}

.card.featured .paragraph {
  color: var(--mas-muted) !important;
  font-size: 14px !important;
  line-height: 1.6;
}

.service-boxes-slider .owl-stage-outer,
.portfolio-slider .owl-stage-outer,
.testimonial-section-slider .owl-stage-outer,
.clients-slider .owl-stage-outer {
  overflow: visible;
}

.owl-dots {
  margin-top: 12px !important;
}

.owl-dots .owl-dot span {
  width: 7px !important;
  height: 7px !important;
  background: rgba(15, 23, 42, 0.15) !important;
}

.owl-dots .owl-dot.active span {
  width: 22px !important;
  border-radius: 99px !important;
  background: var(--mas-signal) !important;
}

.service-boxes-slider .owl-nav,
.portfolio-slider .owl-nav,
.testimonial-section-slider .owl-nav {
  margin-top: 8px;
}

.service-boxes-slider .owl-nav button,
.portfolio-slider .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  color: var(--mas-text) !important;
}

.portfolio-section h4,
.blog-section-subtitle {
  color: var(--mas-muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin: 0 0 8px !important;
  text-align: left !important;
}

body.rtl .portfolio-section h4,
body.rtl .blog-section-subtitle {
  text-align: right !important;
}

.project-box-div {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #10182c;
  border: 1px solid var(--mas-stroke);
  min-height: 280px;
}

.project-box-div img,
.project-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.project-meta {
  position: absolute !important;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px !important;
  border-radius: 18px;
  background: rgba(8, 10, 18, 0.72) !important;
  backdrop-filter: blur(16px);
  border: 1px solid var(--mas-stroke);
}

.project__text,
.project-meta-title a {
  color: #fff !important;
  font-weight: 800;
  font-size: 15px;
}

.project-category,
.block_text,
.project-category .block_text {
  color: var(--mas-cyan) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-row {
  position: relative;
  margin: 0 0 28px !important;
  padding: 0 var(--mas-pad) !important;
}

.project_index {
  font-family: var(--mas-font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: -18px;
}

.project__img img,
.project__img_single img {
  border-radius: 28px;
  width: 100%;
  border: 1px solid var(--mas-stroke);
}

.info-row__title,
.info-row__title a,
.post-name {
  font-family: var(--mas-font-display) !important;
  color: var(--mas-text) !important;
  font-weight: 800 !important;
}

.case_tt {
  color: var(--mas-cyan) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.project-desc,
.page-content,
.post-body,
.post-excerpt {
  color: var(--mas-muted) !important;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Testimonials — POS receipt tickets
   -------------------------------------------------------------------------- */
.testimonial-section,
.clients-section,
.members-section,
.blog-section,
.typed-section,
.footer-section,
.contant-section-page,
.iframe-contact,
.blog-page-section,
.page-content,
.project-content,
.pricing-elements {
  background: transparent !important;
}

/* --------------------------------------------------------------------------
   Partners — logo wall (brand-first)
   -------------------------------------------------------------------------- */
.mas-partners__canvas {
  border-radius: var(--mas-section-radius);
  overflow: hidden;
  background: #fff;
  border: 0;
  border-top: 1px solid var(--mas-stroke-2);
  border-bottom: 1px solid var(--mas-stroke-2);
  box-shadow: none;
}

.mas-partners__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--mas-pad) 16px;
  border-bottom: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-bottom: 0 !important;
}

.mas-partners__title,
.testimonial-section.mas-partners h3 {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(26px, 4vw, 40px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
  color: var(--mas-text) !important;
  margin: 0 !important;
  text-align: left !important;
}

body.rtl .mas-partners__title,
body.rtl .testimonial-section.mas-partners h3 {
  text-align: right !important;
}

.mas-partners__head-note {
  margin: 0;
  max-width: 24ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--mas-muted);
  text-align: right;
}

body.rtl .mas-partners__head-note {
  text-align: left;
}

.mas-partners__head-hint {
  color: var(--mas-faint);
}

@media (max-width: 767px) {
  .mas-partners__head-hint {
    display: none;
  }
}

.mas-partners__wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px var(--mas-pad);
}

.mas-partners__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mas-stroke-2);
  box-shadow: var(--mas-shadow);
  transition: transform 0.25s var(--mas-ease), box-shadow 0.25s var(--mas-ease), border-color 0.25s var(--mas-ease);
}

.mas-partners__tile:hover,
.mas-partners__tile:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--mas-shadow-lg);
  border-color: rgba(225, 29, 72, 0.18);
}

.mas-partners__tile-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 16px 10px;
  background:
    radial-gradient(circle at 50% 100%, rgba(14, 116, 144, 0.05), transparent 62%),
    #fff;
}

.mas-partners__tile-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 68px;
  object-fit: contain;
  filter: grayscale(0.12) saturate(0.95);
  transition: filter 0.25s var(--mas-ease), transform 0.25s var(--mas-ease);
}

.mas-partners__tile:hover .mas-partners__tile-logo,
.mas-partners__tile:focus-within .mas-partners__tile-logo {
  filter: none;
  transform: scale(1.04);
}

.mas-partners__tile-foot {
  padding: 10px 12px 12px;
  text-align: center;
  border-top: 1px solid var(--mas-stroke);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mas-partners__tile-name {
  margin: 0 !important;
  font-family: var(--mas-font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.25 !important;
  color: var(--mas-ink-2) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mas-partners__tile-tag {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mas-faint);
  background: var(--mas-surface-2);
  border: 1px solid var(--mas-stroke);
}

.mas-partners__tile-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s var(--mas-ease), transform 0.25s var(--mas-ease);
}

.mas-partners__tile-detail-name {
  margin: 0;
  font-family: var(--mas-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--mas-text);
}

.mas-partners__tile-detail-text,
.mas-partners__tile-detail-text p {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: var(--mas-muted) !important;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) {
  .mas-partners__tile:hover .mas-partners__tile-detail,
  .mas-partners__tile:focus-within .mas-partners__tile-detail {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.mas-partners__tile--featured {
  grid-column: span 2;
  min-height: 196px;
}

.mas-partners__tile--featured .mas-partners__tile-media {
  min-height: 132px;
  padding-top: 24px;
}

.mas-partners__tile--featured .mas-partners__tile-logo {
  max-height: 88px;
  max-width: 72%;
}

@media (min-width: 768px) {
  .mas-partners__wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px var(--mas-pad);
  }

  .mas-partners__tile {
    min-height: 176px;
  }

  .mas-partners__tile-media {
    min-height: 118px;
    padding: 22px 18px 12px;
  }

  .mas-partners__tile-logo {
    max-height: 76px;
  }

  .mas-partners__tile--featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: auto;
  }

  .mas-partners__tile--featured .mas-partners__tile-media {
    min-height: 220px;
  }

  .mas-partners__tile--featured .mas-partners__tile-logo {
    max-height: 112px;
    max-width: 78%;
  }
}

@media (min-width: 1100px) {
  .mas-partners__wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 20px var(--mas-pad);
  }
}

@media (min-width: 900px) {
  .mas-partners__head {
    padding: 28px var(--mas-pad) 18px;
  }
}

@media (max-width: 767px) {
  .mas-partners__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mas-partners__head-note {
    max-width: none;
    text-align: left;
  }

  body.rtl .mas-partners__head-note {
    text-align: right;
  }

  .mas-partners__tile-detail {
    display: none;
  }
}

/* Legacy testimonial carousel — inner pages */
.testimonial-section {
  padding: 20px 0 !important;
}

.testimonial-section.mas-partners {
  padding: 0 !important;
}

blockquote.testimonial-slide {
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.testimonial-layout1 {
  display: grid !important;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 18px !important;
  border-radius: 24px;
  background:
    repeating-linear-gradient(180deg,
      rgba(255, 255, 255, 0.03) 0 2px,
      transparent 2px 8px),
    linear-gradient(180deg, #161e32, #0d1424) !important;
  border: 1px dashed rgba(255, 200, 87, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.item-figure img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 18px !important;
  object-fit: cover;
  background: #fff;
  padding: 6px;
}

.item-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--mas-text) !important;
  margin: 0 0 2px !important;
}

.item-sub-title {
  color: var(--mas-amber) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.item-paragraph,
.item-paragraph p {
  color: var(--mas-muted) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

/* --------------------------------------------------------------------------
   Newsroom — premium editorial magazine section
   -------------------------------------------------------------------------- */
.blog-section.mas-newsroom {
  padding: 0 !important;
}

.mas-newsroom__shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) var(--mas-pad);
  background:
    radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.035) 1px, transparent 0),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  background-size: 22px 22px, auto;
  border-top: 1px solid var(--mas-stroke-2);
  border-bottom: 1px solid var(--mas-stroke-2);
}

/* Header */
.mas-newsroom__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.mas-newsroom__head-main {
  max-width: 52ch;
}

.mas-newsroom__title,
.blog-section.mas-newsroom .blog-section-title {
  margin: 0 0 10px !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(28px, 4.2vw, 42px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.14 !important;
  color: var(--mas-text) !important;
  text-align: start !important;
}

.mas-newsroom__lead {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.75;
  color: var(--mas-muted);
  max-width: 46ch;
}

.mas-newsroom__head-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.14);
  color: var(--mas-signal) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s var(--mas-ease), transform 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-newsroom__head-cta:hover {
  background: rgba(225, 29, 72, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.1);
}

.mas-newsroom__head-cta:focus-visible,
.mas-newsroom__featured-link:focus-visible,
.mas-newsroom__side-link:focus-visible,
.mas-newsroom__card-link:focus-visible {
  outline: 2px solid var(--mas-signal);
  outline-offset: 3px;
}

body.rtl .mas-newsroom__head-cta svg,
body.rtl .mas-newsroom__read svg,
body.rtl .mas-newsroom__side-read svg,
body.rtl .mas-newsroom__card-read svg,
body.rtl .mas-newsroom__cta svg {
  transform: scaleX(-1);
}

/* Shared meta */
.mas-newsroom__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.mas-newsroom__badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mas-cyan);
  background: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(14, 116, 144, 0.12);
}

.mas-newsroom__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--mas-faint);
}

.mas-newsroom__date::before {
  content: "•";
  margin-inline-end: 8px;
  color: rgba(15, 23, 42, 0.18);
}

.mas-newsroom__meta .mas-newsroom__date:first-child::before {
  display: none;
}

.mas-newsroom__read,
.mas-newsroom__side-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mas-signal);
  transition: gap 0.22s var(--mas-ease), color 0.22s var(--mas-ease);
}

/* Stage: featured + side */
.mas-newsroom__stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.mas-newsroom__featured {
  min-width: 0;
}

.mas-newsroom__featured-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mas-stroke);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: border-color 0.25s var(--mas-ease), box-shadow 0.25s var(--mas-ease), transform 0.25s var(--mas-ease);
}

.mas-newsroom__featured-link:hover {
  border-color: rgba(225, 29, 72, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.mas-newsroom__featured-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mas-surface-2);
}

.mas-newsroom__featured-image,
.mas-newsroom__side-image,
.mas-newsroom__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--mas-ease);
}

.mas-newsroom .blog_post_image {
  height: 100% !important;
  min-height: 0 !important;
}

.mas-newsroom__featured-link:hover .mas-newsroom__featured-image {
  transform: scale(1.03);
}

.mas-newsroom__featured-body {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 26px);
}

.mas-newsroom__featured-title,
.mas-newsroom__featured-title.title-block {
  margin: 0 !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(22px, 2.8vw, 32px) !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.02em !important;
  color: var(--mas-text) !important;
  transition: color 0.22s var(--mas-ease);
}

.mas-newsroom__featured-link:hover .mas-newsroom__featured-title {
  color: var(--mas-signal) !important;
}

.mas-newsroom__featured-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mas-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mas-newsroom__featured-link:hover .mas-newsroom__read {
  gap: 12px;
}

/* Side stack */
.mas-newsroom__side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.mas-newsroom__side-item {
  min-width: 0;
}

.mas-newsroom__side-link {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mas-stroke);
  transition: background 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), transform 0.22s var(--mas-ease);
}

.mas-newsroom__side-link:hover {
  background: #fafbfd;
  border-color: rgba(14, 116, 144, 0.16);
  transform: translateY(-1px);
}

.mas-newsroom__side-link--lead {
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
}

.mas-newsroom__side-link--lead .mas-newsroom__side-media {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.mas-newsroom__side-link--lead .mas-newsroom__side-body {
  padding: 16px 18px 18px;
}

.mas-newsroom__side-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--mas-surface-2);
}

.mas-newsroom__side-link--lead .mas-newsroom__side-media {
  aspect-ratio: 16 / 10;
}

.mas-newsroom__side-link:hover .mas-newsroom__side-image {
  transform: scale(1.04);
}

.mas-newsroom__side-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.mas-newsroom__side-title,
.mas-newsroom__side-title.title-block {
  margin: 0 !important;
  font-family: var(--mas-font-display) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: -0.01em !important;
  color: var(--mas-text) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.22s var(--mas-ease);
}

.mas-newsroom__side-link--lead .mas-newsroom__side-title {
  font-size: 17px !important;
  -webkit-line-clamp: 3;
}

.mas-newsroom__side-link:hover .mas-newsroom__side-title {
  color: var(--mas-signal) !important;
}

.mas-newsroom__side-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mas-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mas-newsroom__side-read {
  display: none;
}

.mas-newsroom__side-link--lead .mas-newsroom__side-read {
  display: inline-flex;
}

/* More articles grid */
.mas-newsroom__more {
  padding-top: clamp(8px, 1.5vw, 16px);
  border-top: 1px solid var(--mas-stroke);
}

.mas-newsroom__more-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mas-newsroom__more-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--mas-font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mas-text);
  white-space: nowrap;
}

.mas-newsroom__more-icon {
  color: var(--mas-cyan);
  flex-shrink: 0;
}

.mas-newsroom__more-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--mas-stroke-2), transparent);
}

body.rtl .mas-newsroom__more-line {
  background: linear-gradient(to right, transparent, var(--mas-stroke-2), transparent);
}

.mas-newsroom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mas-newsroom__card {
  min-width: 0;
}

.mas-newsroom__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mas-stroke);
  transition: border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease), transform 0.22s var(--mas-ease);
}

.mas-newsroom__card-link:hover {
  border-color: rgba(225, 29, 72, 0.16);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.mas-newsroom__card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mas-surface-2);
}

.mas-newsroom__card-link:hover .mas-newsroom__card-image {
  transform: scale(1.03);
}

.mas-newsroom__card-body {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  flex: 1;
}

.mas-newsroom__card-title,
.mas-newsroom__card-title.title-block {
  margin: 0 !important;
  font-family: var(--mas-font-display) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.01em !important;
  color: var(--mas-text) !important;
  min-height: calc(1.45em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.22s var(--mas-ease);
}

.mas-newsroom__card-link:hover .mas-newsroom__card-title {
  color: var(--mas-signal) !important;
}

.mas-newsroom__card-read {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--mas-signal);
  margin-top: auto;
  transition: transform 0.22s var(--mas-ease);
}

.mas-newsroom__card-link:hover .mas-newsroom__card-read {
  transform: translateX(3px);
}

body.rtl .mas-newsroom__card-link:hover .mas-newsroom__card-read {
  transform: translateX(-3px);
}

.mas-newsroom__mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.mas-newsroom__cta {
  min-width: min(100%, 300px);
}

@media (min-width: 640px) {
  .mas-newsroom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .mas-newsroom__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .mas-newsroom__mobile-cta {
    display: none;
  }

  .mas-newsroom__stage {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: start;
  }

  .mas-newsroom__side-link {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .mas-newsroom__stage {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(24px, 2.8vw, 36px);
  }

  .mas-newsroom__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .mas-newsroom__side-link {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .mas-newsroom__head-cta {
    display: none;
  }

  .mas-newsroom__shell {
    padding-bottom: clamp(24px, 4vw, 36px);
  }
}

/* Legacy blog cards — blog page */
.blog-single-post,
.single-post.blogloop-v2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: none !important;
}

.after-bg,
.post-thumbnail {
  position: relative;
}

.blog_post_image,
.post-thumbnail img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.entry-date {
  position: absolute !important;
  right: 12px;
  bottom: 12px;
  background: rgba(5, 7, 13, 0.78) !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 8px 10px !important;
  border: 1px solid var(--mas-stroke);
  backdrop-filter: blur(10px);
}

.entry-date span {
  display: block;
  line-height: 1.1;
  font-weight: 800;
}

.blog-item,
.post-details,
.post-details-holder {
  padding: 14px 16px 16px;
  background: transparent !important;
}

.title-block a,
.post-name a,
.post-name {
  color: var(--mas-text) !important;
  font-weight: 800;
  font-size: 18px;
}

.post-tags,
.post-category-comment-date {
  color: var(--mas-cyan) !important;
  font-size: 12px;
}

.post-date {
  color: var(--mas-faint) !important;
}

.post-author-avatar img {
  border-radius: 50%;
  border: 2px solid var(--mas-stroke);
}

.widget_element {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  border-radius: 22px;
  padding: 16px;
  margin-bottom: 14px;
  color: var(--mas-muted);
}

/* --------------------------------------------------------------------------
   Typed CTA band
   -------------------------------------------------------------------------- */
.typed-section,
.mas-cta-bar {
  margin: 0;
  padding: 18px var(--mas-pad) !important;
  border-radius: 0;
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(14, 116, 144, 0.07), transparent 50%),
    linear-gradient(135deg, #ffffff, #f3f6fb);
  border: 0;
  border-top: 1px solid var(--mas-stroke-2);
  border-bottom: 1px solid var(--mas-stroke-2);
  box-shadow: none;
}

.mas-cta-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.mas-cta-bar__text,
.parent-typed-text {
  margin: 0 !important;
}

.mas-cta-bar__btn {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mas-cta-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mas-cta-bar__text {
    max-width: 62%;
  }
}

.typed-section .container {
  padding: 0;
  max-width: none;
  width: 100%;
}

.parent-typed-text,
.mt_typed-beforetext,
.mt_typed_text {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(20px, 3.5vw, 32px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: var(--mas-text) !important;
}

.typed-section .text-right {
  text-align: left !important;
  margin-top: 12px;
}

body.rtl .typed-section .text-right {
  text-align: right !important;
}

/* --------------------------------------------------------------------------
   Footer v3 — simple responsive grid + icons
   -------------------------------------------------------------------------- */
.mas-footer,
.footer-section.mas-footer {
  padding: 0 !important;
  margin-top: 0;
}

.mas-footer__shell,
.mas-footer__canvas,
.footer-section .footer-wrapper.mas-footer__canvas {
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #111827 0%, #0b1220 100%) !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.88);
}

.mas-footer__shell {
  padding: clamp(28px, 4vw, 44px) var(--mas-pad) 0;
}

/* Brand row */
.mas-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  padding-bottom: clamp(24px, 3.5vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mas-footer__brandbox {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mas-footer__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s var(--mas-ease);
}

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

.mas-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mas-footer__name {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.mas-footer__sub {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.mas-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--mas-text) !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: transform 0.2s var(--mas-ease), box-shadow 0.2s var(--mas-ease);
}

.mas-footer__cta i {
  font-size: 14px;
  color: var(--mas-accent);
}

.mas-footer__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  color: var(--mas-text) !important;
}

/* Link columns */
.mas-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: clamp(24px, 3.5vw, 36px) 0;
}

.mas-footer__block {
  min-width: 0;
}

.mas-footer__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--mas-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  text-transform: none !important;
  color: #fff !important;
}

.mas-footer__heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.12);
  color: rgba(94, 234, 212, 0.95);
  flex-shrink: 0;
}

.mas-footer__heading-icon i {
  font-size: 13px;
}

.mas-footer__menu,
.mas-footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mas-footer__menu li {
  margin: 0;
}

.mas-footer__menu a,
.mas-footer__menu--cms a,
.footer-section .menu-quick-link-container ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  transition: color 0.2s var(--mas-ease), transform 0.2s var(--mas-ease);
}

.mas-footer__menu a i {
  width: 14px;
  font-size: 11px;
  color: rgba(251, 113, 133, 0.85);
  flex-shrink: 0;
  opacity: 0.9;
}

.mas-footer__menu--cms a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c1";
  width: 14px;
  font-size: 11px;
  color: rgba(251, 113, 133, 0.85);
  flex-shrink: 0;
}

.mas-footer__menu a:hover,
.mas-footer__menu--cms a:hover,
.footer-section .menu-quick-link-container ul li a:hover {
  color: #fff !important;
  transform: translateX(2px);
}

body.rtl .mas-footer__menu a:hover,
body.rtl .mas-footer__menu--cms a:hover {
  transform: translateX(-2px);
}

/* Contact block — structured rows */
.mas-footer__contact-wrap {
  min-width: 0;
}

.mas-footer__contact {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0;
}

.mas-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mas-footer__contact-row:first-child {
  padding-top: 0;
}

.mas-footer__contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mas-footer__contact-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.1);
  color: rgba(94, 234, 212, 0.95);
  font-size: 13px;
}

.mas-footer__contact-text {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 4px;
}

.mas-footer__contact-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.88);
}

.mas-footer__contact-text > a,
.mas-footer__contact-links a {
  display: inline-block;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  text-decoration: none !important;
  word-break: break-word;
  transition: color 0.2s var(--mas-ease);
}

.mas-footer__contact-links {
  display: grid;
  gap: 2px;
}

.mas-footer__contact-text > a:hover,
.mas-footer__contact-links a:hover {
  color: rgba(251, 113, 133, 0.95) !important;
}

.mas-footer__contact-wrap .header-social-share,
.mas-footer__contact-wrap .social-share-inner {
  display: none !important;
}

.mas-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Social row */
.mas-footer__social-section {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mas-footer__heading--social {
  margin-bottom: 16px;
}

.mas-footer__social-grid,
.mas-footer__social-grid.header-social-share,
.mas-footer__social-grid.social-share-inner,
.mas-footer .mas-footer__social-grid .header-social-share {
  position: static !important;
  inset: auto !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  z-index: auto !important;
  width: 100%;
}

.mas-footer__social-grid ul,
.mas-footer__social-grid .mas-footer__social-list,
.mas-footer__social-grid .header-social-share ul,
.mas-footer__social-grid .social-share-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.mas-footer__social-grid ul li,
.mas-footer__social-grid .mas-footer__social-list li,
.mas-footer__social-grid .header-social-share ul li {
  display: block !important;
  margin: 0 !important;
  opacity: 1 !important;
}

.mas-footer__social-grid ul li a,
.mas-footer__social-grid .header-social-share ul li a,
.mas-footer__social-grid .social-share-inner ul li a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  line-height: 1 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: background 0.2s var(--mas-ease), border-color 0.2s var(--mas-ease), transform 0.2s var(--mas-ease);
}

.mas-footer__social-grid ul li a em,
.mas-footer__social-grid .header-social-share ul li a em {
  display: none !important;
}

.mas-footer__social-grid ul li a .mas-footer__social-ico,
.mas-footer__social-grid .header-social-share ul li a .mas-footer__social-ico {
  display: block !important;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.mas-footer__social-grid ul li a .fab,
.mas-footer__social-grid ul li a .fas {
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.mas-footer__social-grid ul li a strong,
.mas-footer__social-grid .header-social-share ul li a strong,
.mas-footer__social-grid .social-share-inner ul a strong {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  text-indent: 0 !important;
}

.mas-footer__social-grid ul li a:hover,
.mas-footer__social-grid .header-social-share ul li a:hover {
  background: rgba(225, 29, 72, 0.22) !important;
  border-color: rgba(251, 113, 133, 0.4) !important;
  transform: translateY(-2px);
}

.mas-footer__social-grid ul li a:hover .mas-footer__social-ico,
.mas-footer__social-grid ul li a:hover .fab,
.mas-footer__social-grid ul li a:hover .fas {
  color: #fff;
}

/* Copyright */
.mas-footer__bottom {
  padding: 16px 0 clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  margin-inline: calc(var(--mas-pad) * -1);
  padding-inline: var(--mas-pad);
}

.mas-footer__copy,
.copyright-text,
.copyright-text p {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-align: center;
}

.copyright-text a {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Legacy title resets */
.mas-footer__panel-title,
.footer-section h4.title,
.footer-widget .title {
  margin: 0 0 12px !important;
  font-family: var(--mas-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: #fff !important;
}

.footer-section .footer-right::before,
.mas-footer__promo::before,
.footer-section .footer-left::before {
  display: none !important;
}

.venor-animate-border {
  display: none !important;
}

@media (min-width: 640px) {
  .mas-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .mas-footer__block--contact {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .mas-footer__cols {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 32px 40px;
  }

  .mas-footer__block--contact {
    grid-column: auto;
  }

  .mas-footer__social-grid ul,
  .mas-footer__social-grid .header-social-share ul {
    justify-content: flex-start;
  }
}

@media (max-width: 639px) {
  .mas-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .mas-footer__cta {
    width: 100%;
  }

  .mas-footer__copy,
  .copyright-text {
    text-align: start;
  }

  body.rtl .mas-footer__copy,
  body.rtl .copyright-text {
    text-align: start;
  }

  .mas-footer__social-grid ul,
  .mas-footer__social-grid .header-social-share ul {
    justify-content: center;
  }
}

/* Dock / FAB clearance on mobile */
@media (max-width: 767px) {
  .mas-footer__bottom {
    padding-bottom: calc(clamp(20px, 3vw, 28px) + env(safe-area-inset-bottom, 0px) + 12px);
  }
}

/* Legacy footer selectors — inner pages using old markup */
.footer-wrapper:not(.mas-footer__canvas) {
  border-radius: 0;
  overflow: hidden;
  background: #0b1220;
  border: 0;
}

.footer-left:not(.mas-footer__promo) {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 45, 85, 0.35), transparent 45%),
    linear-gradient(160deg, #6d28ff, #c81e4a) !important;
  padding: 28px 22px !important;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.footer-left .inner span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.8;
}

.footer-left h4 {
  font-family: var(--mas-font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff !important;
  margin: 8px 0 16px;
}

.footer-right:not(.mas-footer__panels) {
  background: #0b1220 !important;
  padding: 22px !important;
}

.footer-widget .title {
  color: var(--mas-text) !important;
  font-size: 13px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-widget a,
.custom-html-widget,
.custom-html-widget a,
.menu-quick-link-container a {
  color: var(--mas-muted) !important;
}

.copyright-text,
.copyright-text * {
  color: var(--mas-faint) !important;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   Inner pages
   -------------------------------------------------------------------------- */
.breadcrumb-area {
  background: transparent !important;
  padding: 18px var(--mas-pad) 8px !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  color: var(--mas-faint);
  font-size: 12px;
}

.page-list a {
  color: var(--mas-cyan);
}

.contact-element-wrapper,
.contact-element {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--mas-stroke) !important;
  border-radius: 24px;
  padding: 8px;
  margin-bottom: 12px;
  box-shadow: none !important;
}

.contact-element {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px !important;
}

.contact-element .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 45, 85, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mas-signal);
}

.contact-element .title {
  font-size: 16px !important;
  color: var(--mas-text) !important;
  margin: 0 0 6px;
}

.contact-element .content,
.contact-element p,
.contact-element a {
  color: var(--mas-muted) !important;
}

.iframe-contact .form-control,
.form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--mas-stroke) !important;
  border-radius: 16px !important;
  color: var(--mas-text) !important;
  min-height: 50px;
  padding: 12px 14px !important;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: var(--mas-faint) !important;
}

.form-control:focus {
  border-color: var(--mas-cyan) !important;
  box-shadow: 0 0 0 3px rgba(62, 224, 255, 0.15) !important;
  outline: none;
}

.alert-success {
  background: rgba(61, 255, 176, 0.12);
  border: 1px solid rgba(61, 255, 176, 0.3);
  color: var(--mas-ok);
  border-radius: 16px;
}

.venor-team {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 16px;
}

.venor-team .thumbnail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.venor-team .content {
  padding: 14px 16px 8px;
}

.venor-team .title {
  color: var(--mas-text) !important;
  margin: 0;
}

.venor-team .position {
  color: var(--mas-cyan) !important;
  font-size: 12px;
}

.venor-team .social-icon {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  list-style: none;
  margin: 0;
}

.venor-team .social-icon a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clients-slide {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-slide img,
.client_image {
  max-height: 56px;
  width: auto !important;
  object-fit: contain;
}

.simpleParallax-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--mas-stroke);
}

.popup-vimeo-video {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-vimeo-video svg {
  width: 64px;
  height: 64px;
  fill: #fff;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.venor-price-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  border-radius: 26px;
  padding: 22px;
  margin-bottom: 16px;
  color: var(--mas-muted);
}

.premium-pricing {
  background: linear-gradient(180deg, rgba(255, 45, 85, 0.16), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 45, 85, 0.4);
}

.plan-ribbon {
  background: var(--mas-signal);
  color: #fff;
}

.gallery img,
.featured-image img {
  border-radius: 20px;
  border: 1px solid var(--mas-stroke);
}

.maintenance_cls {
  background: var(--mas-ink) !important;
  color: var(--mas-text);
}

/* Cookie */
.cc-window {
  background: #121a2e !important;
  color: var(--mas-text) !important;
  border-radius: 20px !important;
  border: 1px solid var(--mas-stroke) !important;
  bottom: calc(var(--mas-dock-inset) + 8px) !important;
  z-index: 108 !important;
}

.cc-btn {
  background: var(--mas-signal) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

/* WhatsApp + scroll */
.codeless-add-purchase-button {
  position: fixed !important;
  bottom: calc(var(--mas-dock-inset) + 12px) !important;
  left: 16px !important;
  right: auto !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 105 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.rtl .codeless-add-purchase-button {
  left: auto !important;
  right: 16px !important;
}

.codeless-add-purchase-button i.icon {
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  position: relative !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32) !important;
}

.codeless-add-purchase-button i.icon::after {
  position: absolute !important;
  inset: -6px !important;
  width: auto !important;
  height: auto !important;
  background: rgba(37, 211, 102, 0.22) !important;
  z-index: -1 !important;
}

.codeless-add-purchase-button i.icon svg {
  height: 26px !important;
  width: 26px !important;
}

.progress-wrap {
  bottom: calc(var(--mas-dock-inset) + 72px) !important;
  right: 16px !important;
  z-index: 104 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--mas-stroke-2);
  box-shadow: var(--mas-shadow) !important;
}

body.rtl .progress-wrap {
  right: auto !important;
  left: 16px !important;
}

.header__lang-dropdown {
  background: #151c30 !important;
  border: 1px solid var(--mas-stroke) !important;
  border-radius: 16px !important;
  padding: 8px !important;
}

.header__lang-dropdown a {
  color: var(--mas-text) !important;
}

/* --------------------------------------------------------------------------
   Desktop / tablet
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --mas-pad: clamp(24px, 3.2vw, 56px);
    --mas-topbar-h: 76px;
  }

  .mas-topbar {
    padding-left: var(--mas-pad);
    padding-right: var(--mas-pad);
  }

  body.common-front {
    padding-bottom: 24px;
  }

  .mas-live {
    display: inline-flex;
  }

  .mas-cta-chip {
    display: inline-flex;
  }

  .mas-dock {
    display: none;
  }

  .slider-inner-venor .row {
    flex-direction: row;
    align-items: center;
    min-height: calc(100svh - 120px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
  }

  .slider-inner-venor .col-md-5 {
    order: 1;
  }

  .slider-inner-venor .col-md-7 {
    order: 2;
  }

  .slider-image,
  .slider-image-inner {
    width: min(100%, 520px);
  }

  .slider-image-inner {
    aspect-ratio: 1 / 1;
    border-radius: 44px;
  }

  .about-section .row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .mas-about__canvas {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .about-us .row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .item-about-row {
    min-height: 520px;
  }

  .typed-section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .typed-section .text-right {
    margin-top: 0;
    text-align: right !important;
  }

  .footer-wrapper>.row,
  .footer-wrapper .row.align-items-end {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
  }

  .mas-footer__main {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .codeless-add-purchase-button {
    bottom: 28px !important;
  }

  .progress-wrap {
    bottom: 96px !important;
  }

  .cc-window {
    bottom: 24px !important;
  }

  .blog-section .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .blog-section .col-md-4 {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .mas-topbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .slider-content h1 {
    font-size: 76px !important;
  }

  .mas-cursor {
    display: block;
  }
}

/* Magnetic cursor (desktop only) */
.mas-cursor {
  display: none;
  position: fixed;
  z-index: 200;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: exclusion;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--mas-ease), height 0.2s var(--mas-ease);
}

.mas-cursor.is-grow {
  width: 54px;
  height: 54px;
  background: var(--mas-signal);
  mix-blend-mode: normal;
  opacity: 0.85;
}

/* Desktop floating nav in topbar */
.mas-desk-nav {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: var(--mas-surface-2);
  border: 1px solid var(--mas-stroke);
}

.mas-desk-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mas-muted);
}

.mas-desk-nav a.is-active,
.mas-desk-nav a:hover {
  background: rgba(225, 29, 72, 0.08);
  color: var(--mas-signal);
}

@media (min-width: 900px) {
  .mas-desk-nav {
    display: inline-flex;
  }

  .mas-icon-btn[data-mas-sheet="more"] {
    display: none;
  }
}

/* Accessibility / motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Light text leftovers from old theme */
body.common-front .light-section {
  background: transparent !important;
}

body.common-front .container {
  max-width: none;
  width: 100%;
  padding-left: var(--mas-pad);
  padding-right: var(--mas-pad);
}

body.common-front .mas-section > .container,
body.common-front .mas-cta-bar .container {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .slider-venor-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .progress-wrap {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Page hero (inner screens)
   -------------------------------------------------------------------------- */
.mas-page-hero {
  position: relative;
  padding: 12px 0 20px;
  overflow: hidden;
}

.mas-page-hero__mesh {
  position: absolute;
  inset: -20% -10% auto;
  height: 220px;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(255, 45, 85, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(62, 224, 255, 0.18), transparent 50%);
  pointer-events: none;
  filter: blur(2px);
}

.mas-page-hero .container {
  position: relative;
  z-index: 1;
}

.mas-page-hero__crumbs .page-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.mas-page-hero__crumbs .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mas-faint);
  padding: 0;
}

.mas-page-hero__title {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(34px, 10vw, 64px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 0.95 !important;
  margin: 0 !important;
  color: var(--mas-text) !important;
}

.mas-page-hero__subtitle {
  margin: 12px 0 0;
  color: var(--mas-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 36rem;
}

/* Section headers */
.mas-section-head {
  margin-bottom: 18px;
}

.mas-section-sub {
  color: var(--mas-muted) !important;
  font-size: 15px !important;
  line-height: 1.65;
  margin: 8px 0 0 !important;
  font-weight: 500 !important;
}

.mas-section-cta {
  margin-top: 20px;
}

.mas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mas-hero-kicker {
  margin-bottom: 12px !important;
}

/* Scroll reveal */
.mas-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--mas-ease), transform 0.65s var(--mas-ease);
}

.mas-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Contact */
.mas-contact-grid {
  display: grid;
  gap: 12px;
}

.mas-form-card {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  box-shadow: var(--mas-shadow);
}

.mas-form-card h3,
.mas-contact-info h3,
.iframe-contact h3 {
  font-family: var(--mas-font-display) !important;
  font-size: 24px !important;
  margin-bottom: 14px !important;
}

.mas-btn-full {
  width: 100%;
  justify-content: center;
}

.mas-contact-info,
.mas-contact-info p,
.mas-contact-info a {
  color: var(--mas-muted) !important;
}

.text-danger {
  color: #ff6b8a !important;
  font-size: 12px;
}

/* Sidebar + article */
.mas-sidebar {
  margin-top: 8px;
}

.mas-article-card .blog_custom {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--mas-stroke);
  background: rgba(255, 255, 255, 0.04);
}

.mas-prose,
.mas-prose p,
.mas-prose li {
  color: var(--mas-muted) !important;
  line-height: 1.75;
}

.mas-prose h1,
.mas-prose h2,
.mas-prose h3,
.mas-prose h4 {
  color: var(--mas-text) !important;
  font-family: var(--mas-font-display);
}

/* Project info panel */
.mas-info-panel {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mas-stroke);
  position: sticky;
  top: calc(var(--mas-topbar-h) + 16px);
}

.mas-info-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.mas-info-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mas-stroke);
}

.mas-info-list li span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mas-faint);
}

.mas-info-list li strong {
  color: var(--mas-text);
  font-weight: 700;
}

.mas-gallery {
  margin-top: 24px;
}

.mas-video-card {
  border-radius: 28px;
  overflow: hidden;
}

/* Search / empty */
.mas-search-grid .project-inner {
  height: 100%;
}

.mas-empty-state {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed var(--mas-stroke);
  background: rgba(255, 255, 255, 0.03);
}

.mas-empty-state .no-results {
  color: var(--mas-muted);
  margin: 0;
}

/* Portfolio page rows mobile */
@media (max-width: 767px) {
  .project-row .project__img {
    margin-bottom: 12px;
  }

  .project-row .info-row__info {
    padding: 0 var(--mas-pad);
  }

  .mas-contact-split .col-md-6+.col-md-6 {
    margin-top: 16px;
  }

  .blog-page-section .col-md-8,
  .post-content .col-md-8 {
    margin-bottom: 8px;
  }

  .mas-info-panel {
    position: static;
    margin-top: 16px;
  }
}

@media (min-width: 768px) {
  .mas-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mas-contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .blog-page-section .row,
  .post-content .row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
  }

  .blog-page-section .col-md-8,
  .blog-page-section .col-md-4,
  .post-content .col-md-8,
  .post-content .col-md-4 {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

/* ==========================================================================
   LIGHT MODE — unified surface overrides
   ========================================================================== */
.card.featured {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.card-img {
  background: var(--mas-surface-2) !important;
}

.project-box-div {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.project-meta {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.project__text,
.project-meta-title a {
  color: var(--mas-text) !important;
}

.project_index {
  color: rgba(15, 23, 42, 0.06) !important;
}

.testimonial-layout1 {
  background: var(--mas-surface) !important;
  border: 1px dashed rgba(217, 119, 6, 0.28) !important;
  box-shadow: var(--mas-shadow) !important;
}

.blog-single-post,
.single-post.blogloop-v2,
.mas-article-card .blog_custom {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.entry-date {
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--mas-text) !important;
  border: 1px solid var(--mas-stroke-2) !important;
}

.widget_element,
.mas-form-card,
.mas-info-panel,
.contact-element-wrapper,
.contact-element,
.venor-team,
.venor-price-box {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.premium-pricing {
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.06), var(--mas-surface)) !important;
  border-color: rgba(225, 29, 72, 0.2) !important;
}

.typed-section {
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(14, 116, 144, 0.08), transparent 50%),
    linear-gradient(135deg, #ffffff, #f3f6fb) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.mas-footer__canvas,
.footer-section.mas-footer .footer-wrapper {
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(225, 29, 72, 0.18), transparent 58%),
    radial-gradient(700px 280px at 88% 100%, rgba(14, 116, 144, 0.16), transparent 55%),
    linear-gradient(180deg, #111827 0%, #0b1220 100%) !important;
  border: 0 !important;
  box-shadow: none !important;
}

.mas-footer .mas-footer__menu a,
.mas-footer .mas-footer__menu--cms a,
.mas-footer .menu-quick-link-container a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.mas-footer .mas-footer__contact-text > a,
.mas-footer .mas-footer__contact-links a {
  color: #fff !important;
}

.mas-footer__social-grid ul li a,
.mas-footer__social-grid .header-social-share ul li a {
  position: relative;
}

.footer-section.mas-footer .footer-wrapper {
  border-radius: 0 !important;
}

.footer-widget a,
.custom-html-widget a,
.menu-quick-link-container a {
  color: var(--mas-muted) !important;
}

.mas-footer .footer-widget a,
.mas-footer .custom-html-widget,
.mas-footer .custom-html-widget p,
.mas-footer .menu-quick-link-container a {
  color: rgba(255, 255, 255, 0.72) !important;
}

.mas-sheet a,
.mas-sheet li a {
  background: var(--mas-surface-2) !important;
  color: var(--mas-text) !important;
}

.mas-page-hero__mesh {
  background:
    radial-gradient(ellipse at 20% 40%, rgba(225, 29, 72, 0.08), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(14, 116, 144, 0.06), transparent 50%) !important;
}

.slider-image-inner {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    radial-gradient(circle at 50% 80%, rgba(251, 146, 60, 0.15), transparent 55%) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow-lg) !important;
}

.slider-image-inner::before {
  background: #e2e8f0 !important;
}

.owl-dots .owl-dot span {
  background: rgba(15, 23, 42, 0.14) !important;
}

.service-boxes-slider .owl-nav button,
.portfolio-slider .owl-nav button,
.slider-venor .owl-nav button {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  color: var(--mas-text) !important;
  box-shadow: var(--mas-shadow) !important;
}

.mas-cursor {
  background: var(--mas-signal);
  mix-blend-mode: normal;
  opacity: 0.35;
}

.cc-window {
  background: var(--mas-surface) !important;
  color: var(--mas-text) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow-lg) !important;
}

.header__lang-dropdown {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow-lg) !important;
}

.header__lang-dropdown a {
  color: var(--mas-text) !important;
}

.progress-wrap {
  background: var(--mas-surface) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  box-shadow: var(--mas-shadow) !important;
}

.mas-empty-state {
  background: var(--mas-surface) !important;
  border-color: var(--mas-stroke-2) !important;
}

.exp-about {
  box-shadow: 0 16px 40px rgba(225, 29, 72, 0.18) !important;
}

.slider-inner-venor,
.slider-inner-venor.mas-hero-v2__slide {
  background: transparent !important;
}

.slider-venor:not(.owl-loaded) {
  background: var(--mas-bg) !important;
}

/* About bento — venor legacy overrides */
.about-section.mas-about .row,
.about-section.mas-about .col-md-6 {
  display: contents;
  max-width: none !important;
  width: auto !important;
  flex: none !important;
}

.mas-about h3.about-heading2-home,
.mas-about .about-heading2-home {
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
}

.mas-about h3.about-heading2-home span {
  font-size: inherit !important;
  line-height: inherit !important;
}

.mas-about .about-heading1-home {
  margin-top: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.about-section.mas-about p {
  max-width: none !important;
}

.mas-vision__canvas,
.mas-work__canvas {
  background: #fff !important;
}

.mas-work__card {
  background: #fff !important;
}

.blog-section.mas-newsroom .blog-section-title,
.mas-newsroom__title {
  font-size: clamp(28px, 4.2vw, 42px) !important;
  font-weight: 600 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.025em !important;
  text-align: start !important;
}

.mas-newsroom__shell {
  background: #fff !important;
}

.mas-partners__canvas {
  background: #fff !important;
}

.testimonial-section.mas-partners .testimonial-layout1::before,
.mas-partners__canvas .testimonial-layout1::before {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Mobile chrome — prevent dock / sheet / FAB overlap
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  body.common-front {
    padding-bottom: calc(var(--mas-dock-inset) + 24px) !important;
  }

  .mas-dock {
    z-index: 110;
  }

  .mas-sheet:not(.is-open) {
    z-index: 80 !important;
    transform: translate3d(0, calc(100% + var(--mas-dock-inset) + 48px), 0) !important;
    clip-path: inset(0 0 100% 0);
  }

  .mas-sheet.is-open {
    z-index: 120 !important;
    clip-path: none;
  }

  .mas-footer,
  .footer-section.mas-footer {
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }

  .mas-footer__bottom {
    padding-bottom: calc(clamp(20px, 3vw, 28px) + env(safe-area-inset-bottom, 0px) + 12px);
  }

  .mas-cta-bar,
  .typed-section {
    margin-bottom: 10px;
  }

  .codeless-add-purchase-button {
    left: 14px !important;
    right: auto !important;
    bottom: calc(var(--mas-dock-inset) + 10px) !important;
    z-index: 105 !important;
  }

  body.rtl .codeless-add-purchase-button {
    left: auto !important;
    right: 14px !important;
  }

  .codeless-add-purchase-button i.icon::after {
    inset: -4px !important;
    animation: none !important;
  }

  .cc-window {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(var(--mas-dock-inset) + 8px) !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 18px !important;
    z-index: 108 !important;
  }
}

@media (min-width: 768px) {
  .codeless-add-purchase-button {
    left: auto !important;
    right: 24px !important;
    bottom: 24px !important;
  }

  body.rtl .codeless-add-purchase-button {
    right: auto !important;
    left: 24px !important;
  }

  .progress-wrap {
    bottom: 88px !important;
    right: 24px !important;
  }

  body.rtl .progress-wrap {
    right: auto !important;
    left: 24px !important;
  }
}

/* --------------------------------------------------------------------------
   About page — premium corporate RTL layout
   -------------------------------------------------------------------------- */
.mas-about-page {
  --mas-about-gap: clamp(20px, 2.5vw, 32px);
  --mas-about-section: clamp(56px, 8vw, 96px);
  --mas-about-radius: 22px;
  --mas-about-radius-lg: 28px;
  padding-bottom: clamp(24px, 4vw, 40px);
}

.mas-about-page .mas-section > .container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--mas-pad);
}

.mas-about-page__hero {
  padding-top: clamp(16px, 3vw, 28px);
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.mas-about-page__crumbs {
  margin-bottom: 14px;
}

.mas-about-page__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--mas-muted);
}

.mas-about-page__crumbs-list a {
  color: var(--mas-muted);
}

.mas-about-page__crumbs-list a:hover {
  color: var(--mas-signal);
}

.mas-about-page__crumbs-list li[aria-current="page"] {
  color: var(--mas-ink-3);
  font-weight: 600;
}

.mas-about-page__eyebrow {
  margin: 0 0 10px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  color: var(--mas-cyan);
  line-height: 1.5;
}

.mas-about-page__title {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(34px, 4.8vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em;
  margin: 0 0 16px !important;
  color: var(--mas-ink) !important;
}

.mas-about-page__intro,
.mas-about-page__intro p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.85;
  color: var(--mas-muted);
  max-width: 38rem;
}

.mas-about-page__intro ul,
.mas-about-page__intro h2,
.mas-about-page__intro h3,
.mas-about-page__intro h4,
.mas-about-page__intro strong {
  display: none;
}

.mas-about-page__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  max-width: 38rem;
}

.mas-about-page__contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-about-page__contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.mas-about-page__contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(14, 116, 144, 0.08);
  color: var(--mas-cyan);
  font-size: 14px;
}

.mas-about-page__contact-label {
  margin: 0 0 6px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
  line-height: 1.3 !important;
}

.mas-about-page__contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mas-about-page__contact-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--mas-muted);
  direction: ltr;
  text-align: start;
  unicode-bidi: embed;
}

.mas-about-page__contact-links a:hover {
  color: var(--mas-signal);
}

.mas-about-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mas-about-page__btn-secondary i {
  font-size: 14px;
}

.mas-about-page__hero-media {
  position: relative;
}

.mas-about-page__hero-figure {
  position: relative;
  margin: 0;
  border-radius: var(--mas-about-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mas-surface-2);
  border: 1px solid var(--mas-stroke);
  box-shadow: var(--mas-shadow);
}

.mas-about-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--mas-ease);
}

.mas-about-page__hero-figure:hover .mas-about-page__hero-image {
  transform: scale(1.02);
}

.mas-about-page__hero-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.18);
  transition: background 0.25s var(--mas-ease);
}

.mas-about-page__hero-play svg {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mas-signal);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.mas-about-page__hero-play:hover {
  background: rgba(15, 23, 42, 0.28);
}

.mas-about-page__hero-float {
  position: absolute;
  inset-inline-start: 16px;
  inset-block-end: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(240px, 72%);
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mas-stroke);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
}

.mas-about-page__hero-float strong,
.mas-about-page__hero-float span {
  display: block;
  line-height: 1.35;
}

.mas-about-page__hero-float strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--mas-ink);
}

.mas-about-page__hero-float span {
  font-size: 12px;
  color: var(--mas-muted);
}

.mas-about-page__hero-float-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(14, 116, 144, 0.1);
  color: var(--mas-cyan);
  font-size: 16px;
}

.mas-about-page__stats {
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--mas-about-gap);
}

.mas-about-page__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--mas-about-radius);
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease);
}

.mas-about-page__stat:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.22);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.mas-about-page__stat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(225, 29, 72, 0.08);
  color: var(--mas-signal);
  font-size: 16px;
}

.mas-about-page__stat-value {
  font-family: var(--mas-font-display) !important;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: var(--mas-ink);
}

.mas-about-page__stat-label {
  font-size: 14px;
  color: var(--mas-muted);
  line-height: 1.45;
}

.mas-about-page__section-head {
  margin-bottom: clamp(24px, 3.5vw, 36px);
  max-width: 42rem;
}

.mas-about-page__section-head--center {
  margin-inline: auto;
  text-align: center;
}

.mas-about-page__section-title {
  position: relative;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(26px, 3.2vw, 36px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin: 0 0 10px !important;
  color: var(--mas-ink) !important;
}

.mas-about-page__section-head--center .mas-about-page__section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mas-signal), var(--mas-signal-2));
}

.mas-about-page__section-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mas-muted);
}

.mas-about-page__vmv {
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--mas-about-gap);
}

.mas-about-page__vmv-card {
  padding: clamp(22px, 2.8vw, 28px);
  border-radius: var(--mas-about-radius);
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-about-page__vmv-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mas-about-page__vmv-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(14, 116, 144, 0.08);
  color: var(--mas-cyan);
  font-size: 18px;
}

.mas-about-page__vmv-title {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
}

.mas-about-page__vmv-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mas-muted);
}

.mas-about-page__services {
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--mas-about-gap);
}

.mas-about-page__service-card {
  border-radius: var(--mas-about-radius);
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-about-page__service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 29, 72, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mas-about-page__service-link {
  display: block;
  height: 100%;
  padding: clamp(20px, 2.6vw, 26px);
  color: inherit;
}

.mas-about-page__service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--mas-surface-2);
  border: 1px solid var(--mas-stroke);
  color: var(--mas-cyan);
  font-size: 20px;
  overflow: hidden;
}

.mas-about-page__service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.mas-about-page__service-title {
  margin: 0 0 8px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
}

.mas-about-page__service-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mas-muted);
}

.mas-about-page__why {
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__why-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.mas-about-page__why-media {
  position: relative;
}

.mas-about-page__why-figure {
  margin: 0;
  border-radius: var(--mas-about-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--mas-stroke);
  box-shadow: var(--mas-shadow);
}

.mas-about-page__why-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mas-about-page__why-badge {
  position: absolute;
  inset-inline-end: 16px;
  inset-block-end: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(260px, 80%);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.mas-about-page__why-badge i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.mas-about-page__why-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.mas-about-page__why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mas-ink-3);
}

.mas-about-page__why-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.1);
  color: var(--mas-signal);
  font-size: 11px;
}

.mas-about-page__partners,
.mas-about-page__clients {
  padding-bottom: var(--mas-about-section);
}

.mas-about-page__logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--mas-about-gap);
}

.mas-about-page__logo-grid--clients {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mas-about-page__logo-card {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-about-page__logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mas-about-page__logo-card--client .mas-about-page__logo-img {
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.25s var(--mas-ease), opacity 0.25s var(--mas-ease);
}

.mas-about-page__logo-card--client:hover .mas-about-page__logo-img {
  filter: none;
  opacity: 1;
}

.mas-about-page__logo-img {
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.mas-about-page__cta {
  padding-bottom: clamp(32px, 5vw, 56px);
}

.mas-about-page__cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--mas-about-radius-lg);
  background:
    radial-gradient(600px 240px at 100% 0%, rgba(225, 29, 72, 0.18), transparent 60%),
    radial-gradient(480px 220px at 0% 100%, rgba(14, 116, 144, 0.16), transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--mas-shadow-lg);
}

.mas-about-page__cta-title {
  margin: 0 0 8px !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.mas-about-page__cta-text {
  margin: 0;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.mas-about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mas-about-page__cta-btn-alt {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
}

.mas-about-page__cta-btn-alt:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

@media (max-width: 1199px) {
  .mas-about-page__logo-grid,
  .mas-about-page__logo-grid--clients {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mas-about-page__hero-shell,
  .mas-about-page__why-shell {
    grid-template-columns: 1fr;
  }

  .mas-about-page__hero-copy {
    order: 1;
  }

  .mas-about-page__hero-media {
    order: 2;
  }

  .mas-about-page__stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mas-about-page__vmv-grid,
  .mas-about-page__services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mas-about-page__why-copy {
    order: 1;
  }

  .mas-about-page__why-media {
    order: 2;
  }

  .mas-about-page__contact-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .mas-about-page__hero-actions,
  .mas-about-page__cta-actions {
    width: 100%;
  }

  .mas-about-page__hero-actions .btn,
  .mas-about-page__cta-actions .btn {
    flex: 1 1 100%;
  }

  .mas-about-page__logo-grid,
  .mas-about-page__logo-grid--clients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mas-about-page__cta-panel {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 479px) {
  .mas-about-page__stats-grid {
    grid-template-columns: 1fr;
  }

  .mas-about-page__vmv-grid,
  .mas-about-page__services-grid {
    grid-template-columns: 1fr;
  }

  .mas-about-page__hero-float {
    position: static;
    margin-top: 12px;
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   Contact page — premium RTL layout
   -------------------------------------------------------------------------- */
.mas-contact-page {
  --mas-contact-gap: clamp(16px, 2vw, 24px);
  --mas-contact-section: clamp(48px, 7vw, 80px);
  --mas-contact-radius: 22px;
  padding-bottom: clamp(24px, 4vw, 40px);
}

.mas-contact-page .mas-page-hero {
  padding-bottom: clamp(8px, 2vw, 16px);
}

.mas-contact-page .mas-section > .container {
  max-width: 1320px;
  margin-inline: auto;
}

.mas-contact-page__channels {
  padding-bottom: var(--mas-contact-section);
}

.mas-contact-page__channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--mas-contact-gap);
}

.mas-contact-page__channel-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 2.5vw, 26px);
  border-radius: var(--mas-contact-radius);
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease), box-shadow 0.22s var(--mas-ease);
}

.mas-contact-page__channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.2);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.mas-contact-page__channel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(225, 29, 72, 0.08);
  color: var(--mas-signal);
  font-size: 18px;
}

.mas-contact-page__channel-title {
  margin: 0 0 12px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
  line-height: 1.3 !important;
}

.mas-contact-page__phone-groups {
  display: grid;
  gap: 14px;
}

.mas-contact-page__phone-group {
  display: grid;
  gap: 6px;
}

.mas-contact-page__phone-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--mas-ink-3);
  letter-spacing: 0.02em;
}

.mas-contact-page__phone-links,
.mas-contact-page__email-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mas-contact-page__phone-links a,
.mas-contact-page__email-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--mas-muted);
  direction: ltr;
  text-align: start;
  unicode-bidi: embed;
  word-break: break-word;
}

.mas-contact-page__phone-links a:hover,
.mas-contact-page__email-links a:hover {
  color: var(--mas-signal);
}

.mas-contact-page__address {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mas-muted);
}

.mas-contact-page__address-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mas-cyan);
}

.mas-contact-page__address-link:hover {
  color: var(--mas-signal);
}

.mas-contact-page__address-link i {
  font-size: 11px;
}

.mas-contact-page__main {
  padding-bottom: var(--mas-contact-section);
}

.mas-contact-page__main-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.mas-contact-page__map-title {
  margin: 0 0 14px !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(22px, 2.8vw, 28px) !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
}

.mas-contact-page__map {
  position: relative;
  overflow: hidden;
  border-radius: var(--mas-contact-radius);
  border: 1px solid var(--mas-stroke);
  background: var(--mas-surface-2);
  box-shadow: var(--mas-shadow);
  min-height: 360px;
}

.mas-contact-page__map iframe {
  display: block;
  width: 100% !important;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.mas-contact-page__form-card {
  padding: clamp(22px, 3vw, 30px);
  border-radius: calc(var(--mas-contact-radius) + 4px);
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  box-shadow: var(--mas-shadow);
}

.mas-contact-page__form-title {
  margin: 0 0 18px !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(22px, 2.8vw, 28px) !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
}

.mas-contact-page__alert {
  margin-bottom: 16px;
}

.mas-contact-page__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.mas-contact-page__field {
  display: grid;
  gap: 6px;
}

.mas-contact-page__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--mas-ink-3);
}

.mas-contact-page .mas-contact-page__input,
.mas-contact-page .mas-contact-page__textarea {
  background: var(--mas-bg) !important;
  border: 1px solid var(--mas-stroke-2) !important;
  border-radius: 14px !important;
  color: var(--mas-ink) !important;
  min-height: 50px;
  padding: 12px 14px !important;
  box-shadow: none !important;
  width: 100%;
}

.mas-contact-page__textarea {
  min-height: 140px;
  resize: vertical;
}

.mas-contact-page .mas-contact-page__input:focus,
.mas-contact-page .mas-contact-page__textarea:focus {
  border-color: var(--mas-cyan) !important;
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.12) !important;
  outline: none;
}

.mas-contact-page__captcha {
  margin: 16px 0;
}

.mas-contact-page__textarea--solo {
  min-height: 180px;
}

.mas-contact-page__form-error[hidden] {
  display: none !important;
}

.mas-contact-page__submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.mas-contact-page__section-head {
  margin-bottom: clamp(20px, 3vw, 28px);
  text-align: center;
}

.mas-contact-page__section-title {
  margin: 0 !important;
  font-family: var(--mas-font-display) !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  color: var(--mas-ink) !important;
}

.mas-contact-page__clients {
  padding-bottom: clamp(32px, 5vw, 48px);
}

.mas-contact-page__clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--mas-contact-gap);
}

.mas-contact-page__client-card {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--mas-surface);
  border: 1px solid var(--mas-stroke);
  transition: transform 0.22s var(--mas-ease), border-color 0.22s var(--mas-ease);
}

.mas-contact-page__client-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.2);
}

.mas-contact-page__client-logo {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.25s var(--mas-ease), opacity 0.25s var(--mas-ease);
}

.mas-contact-page__client-card:hover .mas-contact-page__client-logo {
  filter: none;
  opacity: 1;
}

@media (max-width: 991px) {
  .mas-contact-page__channels-grid {
    grid-template-columns: 1fr;
  }

  .mas-contact-page__main-shell {
    grid-template-columns: 1fr;
  }

  .mas-contact-page__map-col {
    order: 1;
  }

  .mas-contact-page__form-col {
    order: 2;
  }

  .mas-contact-page__clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mas-contact-page__form-grid {
    grid-template-columns: 1fr;
  }

  .mas-contact-page__clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}