html[dir="rtl"],
body[dir="rtl"],
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: var(--bs-body-line-height);
  color: #11190c;
  background-color: var(--bs-light);
}

a {
  text-decoration: none;
  color: inherit;
}

.font-pop {
  font-family: 'Cairo', sans-serif;
}

.lg-scale {
  transform: scale(1.3);
  pointer-events: none;
  z-index: -1;
}

ul.tri {
  list-style: none;
  padding-left: 1.2rem;
}

ul.tri li {
  position: relative;
  margin-bottom: 6px;
}

ul.tri li::before { 
  content: "";
  position: absolute;
  left: -1rem;
  top: 6px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #00b779;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: #00a75e !important;
}

ul.tri.black li::before { 
  content: "";
  position: absolute;
  left: -1rem;
  top: 6px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid black;
}

.nav-link {
  color: black;
  font-family: 'Cairo', sans-serif;
}

.slight-small {
  font-size: 0.9rem;
}

.smaller {
  font-size: 0.75rem;
}

.mini {
  font-size: 0.65rem;
}

.micro {
  font-size: 0.5rem;
}

.reset-input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.reset-input::placeholder {
  color: inherit;
  opacity: 0.5;
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
  .lg-scale {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
}

:root {
  --maso-text: #111018;
  --maso-accent-green: #00b779;
}

.maso-footer {
  background-color: #ffffff;
  padding: 72px 0 60px;
  color: var(--maso-text);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maso-footer .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.maso-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.maso-footer__col {
  flex: 1 1 0;
}

.maso-footer__col--brand {
  text-align: right;
}

.maso-footer__col--contact {
  text-align: left;
}

@media (max-width: 768px) {
  .maso-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .maso-footer__col--brand,
  .maso-footer__col--contact {
    text-align: center;
  }
}

.maso-footer__logo {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.08em;
}

.maso-footer__tagline {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 40px;
}

.maso-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.maso-footer__social-link {
  font-size: 22px;
  color: var(--maso-accent-green);
  text-decoration: none;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.maso-footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.maso-footer__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--maso-text);
}

.maso-footer__links-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 60px;
  row-gap: 16px;
  font-size: 16px;
}

.maso-footer__links-grid a {
  text-decoration: none;
  color: var(--maso-text);
  transition: color 0.16s ease-out, transform 0.16s ease-out;
}

.maso-footer__links-grid a:hover {
  color: var(--maso-accent-green);
  transform: translateX(2px);
}

.maso-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.maso-footer__list li + li {
  margin-top: 14px;
}

.maso-footer__list a {
  color: var(--maso-text);
  text-decoration: none;
}

.maso-footer__list a:hover {
  color: var(--maso-accent-green);
}

.maso-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  direction: ltr;
}

@media (max-width: 768px) {
  .maso-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px !important;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .maso-footer__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.maso-footer__contact-item + .maso-footer__contact-item {
  margin-top: 20px;
}

.maso-footer__icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--maso-accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
}

.maso-footer__contact-text {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .maso-footer__inner {
    column-gap: 40px;
    grid-template-columns: 1.6fr 1fr 1fr;
    row-gap: 40px;
  }

  .maso-footer__col--contact {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .maso-footer {
    padding: 56px 0 48px;
  }

  .maso-footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 32px;
  }

  .maso-footer__col--brand {
    grid-column: span 2;
  }

  .maso-footer__logo {
    margin-bottom: 24px;
  }

  .maso-footer__tagline {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .maso-footer .container {
    padding: 0 20px;
  }

  .maso-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .maso-footer__logo {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .maso-footer__tagline {
    font-size: 16px;
  }

  .maso-footer__social {
    margin-top: 8px;
  }

  .maso-footer__title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .maso-footer__links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .maso-footer__contact-text {
    white-space: normal;
  }
}

.cat-safe {
  padding: 135px 0 80px;
}

.cat-safe__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cat-safe__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  background-color: #11190c;
  border-radius: 42px;
  overflow: hidden;
  padding: 52px 60px;
  height: 26.7rem;
  overflow: visible;
}

.cat-safe__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  z-index: 2;
}

.cat-safe__title {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.cat-safe__text {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #00b779;
}

.cat-safe__button {
  margin-top: 30px;
  align-self: flex-start;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ffffff;
  color: #07130a;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 34px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out;
}

.cat-safe__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.45);
}

.cat-safe__button:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.38);
}

.cat-safe__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cat-safe__shape {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: translate(10px, 40px) rotate(8deg);
  opacity: 1;
}

.cat-safe__image {
  position: absolute;
  left: -4px;
  bottom: -46px;
  max-height: 462px;
  width: auto;
  z-index: 2;
}

@media (max-width: 960px) {
  .cat-safe__card {
    grid-template-columns: 1.1fr 1fr;
    padding: 40px 36px;
  }

  .cat-safe__title {
    font-size: 26px;
  }

  .cat-safe__shape {
    width: 220px;
    height: 220px;
    border-width: 60px;
    transform: translate(0, 40px) rotate(8deg);
  }

  .cat-safe__image {
    max-height: 320px;
    transform: translateY(16px);
  }
}

@media (max-width: 720px) {
  .cat-safe {
    padding: 56px 0 64px;
  }

  .cat-safe__inner {
    padding: 0 16px;
  }

  .cat-safe__card {
    grid-template-columns: 1fr;
    padding: 32px 24px 40px;
    row-gap: 24px;
    height: 33rem;
  }

  .cat-safe__content {
    order: 1;
  }

  .cat-safe__visual {
    order: 2;
    justify-content: center;
  }

  .cat-safe__title {
    font-size: 24px;
  }

  .cat-safe__button {
    margin-top: 22px;
  }

  .cat-safe__shape {
    width: 210px;
    height: 210px;
    border-width: 56px;
    transform: translate(-6px, 20px) rotate(6deg);
  }

  .cat-safe__image {
    max-height: 280px;
    transform: translateY(18px);
  }
}

.maso-video {
  background-color: #f6faf9;
  padding: 80px 0 90px;
}

.maso-video .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.maso-video__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.maso-video__eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #00b779;
  margin-bottom: 8px;
}

.maso-video__title {
  font-size: 30px;
  font-weight: 700;
  color: #111018;
  margin-bottom: 14px;
}

.maso-video__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

.maso-video__frame {
  margin-top: 24px;
}

.maso-video__ratio {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #00b779 0, #00b779 8%, transparent 45%), #050c07;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.maso-video__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.maso-video__badge {
  position: absolute;
  left: 24px;
  top: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #f9f9f9;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.maso-video__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ff89;
  box-shadow: 0 0 8px rgba(0, 255, 137, 0.9);
}

@media (max-width: 900px) {
  .maso-video {
    padding: 64px 0 72px;
  }

  .maso-video__title {
    font-size: 26px;
  }

  .maso-video__subtitle {
    font-size: 14px;
  }

  .maso-video .container {
    padding: 0 20px;
  }

  .maso-video__ratio {
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  .maso-video {
    padding: 56px 0 64px;
  }

  .maso-video__header {
    margin-bottom: 24px;
  }

  .maso-video__title {
    font-size: 22px;
  }

  .maso-video__subtitle {
    font-size: 13px;
  }

  .maso-video__badge {
    left: 16px;
    top: 16px;
    padding: 5px 10px;
    font-size: 10px;
  }
}

.swer {
  text-align: justify;
}

.maso-mobile-logo {
  height: 25px;
  display: none;
}

.maso-footer-logo {
  height: 45px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  .maso-footer-logo {
    height: 36px;
  }
}

@media (max-width: 991px) {
  .maso-mobile-logo {
    display: block;
  }

  .maso-navbar-brand.fw-bold {
    display: none;
  }
}

@media (max-width: 600px) {
  .maso-header,
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
  }

  .maso-header__inner,
  .site-header .container,
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
  }

  .maso-logo,
  .site-logo {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .site-nav__toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .site-nav__toggle button,
  .nav-toggle button {
    margin: 0;
  }

  .maso-header__cta {
    display: none;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .hero-visual .hero-device,
  .hero-visual img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-left {
    width: 100%;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .title-maso {
    font-size: 22px;
  }

  .title-petphone {
    font-size: 20px;
  }

  .hero-subtitle {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-list {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-list li + li {
    margin-top: 4px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 13px;
    border-radius: 999px;
  }
}

#maso-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#maso-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.maso-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.maso-loader-logo {
  width: 120px;
  height: auto;
  animation: fadeInScale 1.2s ease-out forwards;
}

.maso-loader-spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid #00b779;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .maso-loader-logo {
    width: 90px;
  }

  .maso-loader-spinner {
    width: 32px;
    height: 32px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].reveal-up {
  transform: translateY(28px);
}

[data-reveal].reveal-left {
  transform: translateX(-26px);
}

[data-reveal].reveal-right {
  transform: translateX(26px);
}

[data-reveal].reveal-left.is-visible,
[data-reveal].reveal-right.is-visible {
  transform: translateX(0);
}

[data-reveal].reveal-scale {
  transform: scale(0.94);
}

[data-reveal].reveal-scale.is-visible {
  transform: scale(1);
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes masoFloatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero-visual .hero-device,
.features-device__image,
.how-card__cat,
.cat-safe__image {
  animation: masoFloatSlow 7s ease-in-out infinite;
}

.hero-cta,
.maso-header__cta,
.cat-safe__button,
.maso-footer__button,
.maso-video__element ~ .maso-video__badge,
.maso-footer__social-link {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, color 0.18s ease-out;
}

.hero-cta,
.maso-header__cta,
.cat-safe__button {
  will-change: transform, box-shadow;
}

.hero-cta:hover,
.maso-header__cta:hover,
.cat-safe__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.hero-cta:active,
.maso-header__cta:active,
.cat-safe__button:active {
  transform: translateY(0);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.38);
}

.maso-footer__social-link:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.9;
}

.maso-footer__icon-circle {
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.maso-footer__contact-item:hover .maso-footer__icon-circle {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 183, 121, 0.45);
}

@media (max-width: 600px) {
  .hero-visual .hero-device,
  .cat-safe__image {
    animation-duration: 8.5s;
  }
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-26px);
}

.reveal-right {
  transform: translateX(26px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal-scale.is-visible {
  transform: scale(1);
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

.lg-scale,
.cat-safe__image {
  animation: masoFloatSlow 7s ease-in-out infinite;
}

.hero-cta,
.cat-safe__button {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, color 0.18s ease-out;
  will-change: transform, box-shadow;
}

.hero-cta:hover,
.cat-safe__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.hero-cta:active,
.cat-safe__button:active {
  transform: translateY(0);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.38);
}

.maso-footer__social-link {
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.maso-footer__social-link:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.9;
}

.maso-footer__icon-circle {
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.maso-footer__contact-item:hover .maso-footer__icon-circle {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 183, 121, 0.45);
}

#maso-preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#maso-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.maso-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.maso-loader-logo {
  width: 120px;
  height: auto;
  animation: masoFadeInScale 1.2s ease-out forwards;
}

.maso-loader-spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid #00b779;
  border-top-color: transparent;
  animation: masoSpinner 0.8s linear infinite;
}

@keyframes masoSpinner {
  to { transform: rotate(360deg); }
}

@keyframes masoFadeInScale {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .maso-loader-logo {
    width: 90px;
  }

  .maso-loader-spinner {
    width: 32px;
    height: 32px;
  }

  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual .lg-scale {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-section h4 {
    font-size: 18px;
  }
}

.lang-switcher .lang-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #111018;
  opacity: 0.6;
  transition: opacity 0.15s ease-out;
}

.lang-switcher .lang-link:hover {
  opacity: 0.9;
}

.lang-switcher .lang-link.is-active {
  opacity: 1;
}

.text-primary {
  --bs-text-opacity: 1;
  color: #00b779 !important;
}

.maso-order-modal {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  font-family: "Cairo", "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maso-order-modal .modal-header {
  padding-bottom: 0;
}

.maso-order-modal .modal-title {
  font-size: 1.1rem;
}

.maso-order-modal .form-control {
  border-radius: 999px;
  padding-inline: 1.1rem;
  direction: rtl;
}

.maso-order-modal .btn-primary {
  border-radius: 999px;
  background-color: #00b779;
  border-color: #00b779;
}

.maso-order-modal .btn-primary:hover {
  background-color: #009463;
  border-color: #009463;
}

.maso-order-modal .btn-outline-secondary {
  border-radius: 999px;
}

.maso-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.maso-footer__col {
  flex: 1;
}

.maso-footer__col--brand {
  text-align: right;
}

.maso-footer__col--contact {
  text-align: left;
}

@media (max-width: 768px) {
  .maso-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .maso-footer__col--contact,
  .maso-footer__col--brand {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .maso-header {
    border-bottom: 1px solid #eef0f6;
    background: #fff;
  }

  .maso-navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: #111;
  }

  .navbar-toggler .navbar-toggler-icon {
    display: none;
  }

  .maso-burger-btn {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .maso-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
  }

  .maso-burger span {
    height: 2px;
    width: 100%;
    background: #222;
    border-radius: 3px;
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar-toggler .navbar-toggler-icon {
    display: none !important;
  }

  .maso-burger-btn {
    border: none !important;
    background: transparent !important;
    padding: 0;
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
  }

  .maso-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
  }

  .maso-burger span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background-color: #222;
  }

  .maso-burger span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
    opacity: 0.8;
  }

  .maso-burger span:nth-child(1),
  .maso-burger span:nth-child(3) {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .maso-footer__logo,
  header .navbar-brand,
  header img[alt="Logo"] {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .maso-footer__logo,
  header .navbar-brand,
  header img[alt="Logo"] {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .hero-section .container,
  #FEATURES1 .container,
  #STORY1 .container,
  #video-demo .maso-video__inner,
  #WORKS1 .container,
  .cat-safe__inner,
  .maso-footer .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  header .container,
  .hero-section .container,
  #FEATURES1 .container,
  #STORY1 .container,
  #video-demo .maso-video__inner,
  #WORKS1 .container,
  .cat-safe__inner,
  .maso-footer .container {
    text-align: left;
  }

  .hero-section h4,
  .hero-section p,
  .hero-section ul,
  #FEATURES1 h2,
  #FEATURES1 ul,
  #STORY1 h2,
  #video-demo .maso-video__header,
  #WORKS1 h2,
  .cat-safe__content,
  .maso-footer__col {
    text-align: left;
  }

  .hero-section .hero-visual,
  #FEATURES1 img,
  #video-demo .maso-video__frame,
  #STORY1 .row,
  .cat-safe__card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-section .container,
  #FEATURES1 .container,
  #STORY1 .container,
  #video-demo .maso-video__inner,
  #WORKS1 .container,
  .cat-safe__inner,
  .maso-footer .container {
    padding-left: 18px;
    padding-right: 18px;
    text-align: right;
  }

  .hero-section h4,
  .hero-section p,
  .hero-section ul,
  #FEATURES1 h2,
  #FEATURES1 ul,
  #STORY1 h2,
  #video-demo .maso-video__header,
  #WORKS1 h2,
  .cat-safe__content,
  .maso-footer__col {
    text-align: right;
  }

  .hero-section .hero-visual,
  #FEATURES1 img,
  #video-demo .maso-video__frame,
  #STORY1 .row,
  .cat-safe__card {
    margin-left: auto;
    margin-right: auto;
  }
}

.dd4 {
  padding-left: 1.2rem !important;
}

html[dir="rtl"] ul.tri {
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] ul.tri li {
  position: relative;
  padding-left: 0;
  padding-right: 1.2rem;
  text-align: right;
}

html[dir="rtl"] ul.tri li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  right: 0;
  left: auto;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid #00a651;
  border-left: none;
}

@media (max-width: 768px) {
  #WORKS1 .bg-primary.bg-overlay {
    border-radius: 24px;
    margin: 0 16px 32px;
    overflow: hidden;
  }

  #WORKS1 .bg-primary.bg-overlay > .container {
    padding: 24px 18px;
    display: flex;
    flex-direction: column !important;
    gap: 20px;
  }

  #WORKS1 .steps-box { order: 1; }
  #WORKS1 .icons-box { order: 2; }
  #WORKS1 .cat-box   { order: 3; }

  #WORKS1 .steps-box {
    text-align: right;
    align-items: flex-end;
  }

  #WORKS1 .steps-box .d-flex {
    gap: 8px;
  }

  #WORKS1 .steps-box .text-black {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
  }

  #WORKS1 .icons-box {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 0;
    margin-top: -10px;
  }

  #WORKS1 .icons-box img {
    height: 30px;
    width: auto;
  }

  #WORKS1 .cat-box img {
    width: 85%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 767.98px) {
  #WORKS1 .bg-primary.bg-overlay > .container {
    flex-direction: column;
  }

  #WORKS1 .d-flex.flex-column.gap-2.py-5 {
    order: 1;
    bottom: 2rem;
  }

  #WORKS1 .bg-white.px-3.py-5 {
    order: 2;
    margin-top: 12px;
  }

  #WORKS1 .col-md-5.text-center {
    order: 3;
    margin-top: 16px;
  }
}

.maso-colors {
  padding: 80px 0 90px;
  background-color: #ffffff;
  font-family: 'Cairo', sans-serif;
}

.maso-colors__eyebrow {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.maso-colors__title {
  margin: 2px 0 40px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.maso-colors__grid {
  margin-bottom: 48px;
}

.maso-color-card {
  text-align: center;
}

.maso-color-card__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.maso-color-card__bullet {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #111111;
}

.maso-color-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #02a45d;
  line-height: 1.4;
}

.maso-color-card__image-wrap {
  border-radius: 18px;
  overflow: hidden;
  padding: 32px 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maso-color-card__image-wrap--green {
  background-color: #00a668;
}

.maso-color-card__image-wrap--pink {
  background-color: #ffb5be;
}

.maso-color-card__image {
  max-width: 100%;
  height: auto;
  display: block;
}

.maso-colors__cta-wrap {
  margin-top: 10px;
}

.maso-colors__cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background-color: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.maso-colors__cta:hover {
  background-color: #02a45d;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .maso-colors {
    padding: 56px 0 64px;
  }

  .maso-colors__eyebrow {
    font-size: 18px;
  }

  .maso-colors__title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .maso-color-card__label {
    margin-bottom: 14px;
  }

  .maso-color-card__image-wrap {
    padding: 26px 20px 30px;
  }

  .maso-colors__cta {
    width: 100%;
    max-width: 360px;
    padding: 14px 24px;
    font-size: 12px;
  }
}

.maso-compare {
  padding: 60px 0;
}

.maso-compare__inner {
  max-width: 960px;
  margin: 0 auto;
}

.maso-compare__header {
  text-align: center;
  margin-bottom: 32px;
  font-family: 'Cairo', sans-serif;
}

.maso-compare__title {
  font-size: 28px;
  margin-bottom: 8px;
}

.maso-compare__subtitle {
  color: #666;
  font-size: 15px;
}

.maso-compare__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.maso-compare__label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: 13px;
  z-index: 4;
}

.maso-compare__label--left {
  left: 16px;
}

.maso-compare__label--right {
  right: 16px;
}

.maso-compare__slider {
  position: relative;
  width: 100%;
  padding-top: 46%;
  cursor: ew-resize;
}

.maso-compare__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maso-compare__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.maso-compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: grab;
  z-index: 3;
}

.maso-compare__handle:active {
  cursor: grabbing;
}

.maso-compare__handle-lines {
  display: inline-block;
  width: 12px;
  height: 16px;
  position: relative;
}

.maso-compare__handle-lines::before,
.maso-compare__handle-lines::after,
.maso-compare__handle-lines {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: #00b779;
}

.maso-compare__handle-lines {
  transform: translateX(-50%);
}

.maso-compare__handle-lines::before {
  transform: translate(-6px, 0);
}

.maso-compare__handle-lines::after {
  transform: translate(4px, 0);
}

@media (max-width: 768px) {
  .maso-compare__inner {
    padding: 0 16px;
  }

  .maso-compare__title {
    font-size: 22px;
  }
}

.petphone-specs {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.petphone-specs__inner {
  max-width: 960px;
  width: 100%;
}

.petphone-specs__header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.petphone-specs__device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.petphone-specs__device-img {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: block;
}

.petphone-specs__device-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.petphone-specs__device-label--green {
  color: var(--petphone-green);
}

.petphone-specs__device-label--pink {
  color: var(--petphone-pink);
}

.petphone-specs__card {
  background-color: var(--petphone-card-bg);
  border-radius: var(--petphone-radius-lg);
  box-shadow: var(--petphone-shadow);
  padding: 1.75rem;
}

.petphone-specs__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--petphone-card-inner);
  border-radius: var(--petphone-radius-md);
  overflow: hidden;
}

.petphone-specs__table tr:nth-child(even) td {
  background-color: rgba(255, 214, 164, 0.12);
}

.petphone-specs__table th {
  width: 38%;
  text-align: left;
  padding: 0.85rem 1.2rem;
  background-color: var(--petphone-accent);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--petphone-text-main);
  vertical-align: top;
}

.petphone-specs__table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  color: var(--petphone-text-muted);
}

.petphone-specs__table th,
.petphone-specs__table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.petphone-specs__table tr:last-child th,
.petphone-specs__table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .petphone-specs {
    padding: 2.5rem 1rem;
  }

  .petphone-specs__header {
    gap: 2rem;
  }

  .petphone-specs__device-img {
    max-width: 150px;
  }

  .petphone-specs__card {
    padding: 1.25rem;
  }

  .petphone-specs__table th,
  .petphone-specs__table td {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .petphone-specs__table,
  .petphone-specs__table tbody,
  .petphone-specs__table tr {
    display: block;
    width: 100%;
  }

  .petphone-specs__table tr {
    margin-bottom: 0.6rem;
    border-radius: var(--petphone-radius-md);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  }

  .petphone-specs__table th,
  .petphone-specs__table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .petphone-specs__table th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
}

#WORKS1 .dog-image {
  height: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 768px) {
  #WORKS1 .dog-image {
    height: 320px;
    max-height: 320px;
    object-fit: contain;
    object-position: center bottom;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  #WORKS1 .bg-primary {
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
  }

  #WORKS1 .d-flex.flex-column.gap-2 {
    padding: 20px 25px;
    z-index: 3;
    position: relative;
  }

  #WORKS1 .bg-white.px-3.py-5 {
    margin-top: -10px;
    background: transparent !important;
    padding: 0 !important;
    gap: 22px !important;
    z-index: 3;
    position: relative;
    left: -4rem;
  }

  #WORKS1 .col-md-5 img {
    width: 85%;
    max-width: 300px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  #WORKS1 .bg-primary {
    min-height: 530px;
  }

  #WORKS1 .bg-overlay {
    background-size: 180%;
    background-position: top center;
  }
}

@media (max-width: 768px) {
  .maso-compare__frame {
    margin-top: 20px;
    border-radius: 20px;
  }

  .maso-compare__slider {
    padding-top: 80% !important;
  }

  .maso-compare__image {
    object-fit: cover;
  }

  .maso-compare__handle {
    width: 48px;
    height: 48px;
  }

  .maso-compare__label {
    font-size: 14px;
    padding: 8px 14px;
  }
}

@media (max-width: 768px) {
  .maso-compare__image {
    object-fit: contain !important;
    background-color: #fff;
  }
}

.maso-compare__slider {
  padding-top: 46% !important;
}

.maso-compare__image {
  object-fit: contain !important;
  background: #ffffff;
}

[data-compare-overlay] {
  overflow: hidden;
}

@media (max-width: 768px) {
  .maso-compare__slider {
    padding-top: 80% !important;
  }

  .maso-compare__image {
    object-fit: cover !important;
    background: #fff;
  }

  .maso-compare__handle {
    width: 52px;
    height: 52px;
  }

  .maso-compare__label {
    font-size: 16px;
    padding: 6px 16px;
  }
}

@media (max-width: 768px) {
  .maso-compare__slider {
    padding-top: 46.86% !important;
  }

  .maso-compare__image {
    object-fit: cover !important;
  }

  .maso-compare__handle {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .maso-compare__frame {
    padding: 60px 0;
  }
}

.petphone-specs__image-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.petphone-specs__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}

@media (max-width: 1200px) {
  .petphone-specs__image-wrap {
    max-width: 780px;
  }
}

@media (max-width: 768px) {
  .petphone-specs__image-wrap {
    max-width: 500px;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .petphone-specs__image-wrap {
    max-width: 380px;
  }
}

@media (min-width: 1600px) {
  .petphone-specs__image-wrap {
    max-width: 1100px;
  }
}

.petphone-specs__image-wrap {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 0;
  display: block;
}

.petphone-specs__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.petphone-specs__header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.petphone-specs__image-wrap {
  margin-bottom: 0 !important;
}

.petphone-specs__card {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .petphone-specs__image-wrap {
    max-width: 550px;
  }
}

@media (max-width: 480px) {
  .petphone-specs__image-wrap {
    max-width: 380px;
  }
}

.maso-contact {
  background: var(--maso-bg);
  padding: 40px 24px;
}

.maso-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  font-family: var(--maso-font);
}

.maso-contact__brand {
  flex: 0 0 auto;
}

.maso-contact__logo {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--maso-text-main);
  margin-bottom: 16px;
}

.maso-contact__tagline {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--maso-text-main);
}

.maso-contact__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.maso-contact__social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--maso-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--maso-green);
  font-size: 16px;
  text-decoration: none;
}

.maso-contact__info {
  flex: 0 0 auto;
  min-width: 260px;
}

.maso-contact__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: var(--maso-text-main);
}

.maso-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.maso-contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--maso-text-muted);
}

.maso-contact__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--maso-green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.maso-contact__text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .maso-contact {
    padding: 24px 16px;
  }

  .maso-contact__inner {
    max-width: 360px;
    gap: 32px;
  }

  .maso-contact__brand,
  .maso-contact__info {
    flex: 1 1 0;
  }

  .maso-contact__logo {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .maso-contact__tagline {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .maso-contact__social-link {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .maso-contact__title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .maso-contact__item {
    font-size: 13px;
    gap: 10px;
  }

  .maso-contact__icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .maso-contact__text {
    white-space: normal;
  }
}

@media (min-width: 1200px) {
  .maso-contact__inner {
    max-width: 1000px;
  }
}

.maso-contact--ar {
  direction: rtl;
}

.maso-contact--ar .maso-contact__brand {
  text-align: right;
}

.maso-contact--ar .maso-contact__tagline {
  text-align: right;
}

.maso-contact--ar .maso-contact__social {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

.maso-contact--ar .maso-contact__title {
  text-align: right;
}

.maso-contact--ar .maso-contact__item {
  flex-direction: row-reverse;
  text-align: right;
}

.maso-contact--ar .maso-contact__text {
  white-space: normal;
}

@media (max-width: 768px) {
  .maso-contact--ar .maso-contact__inner {
    max-width: 360px;
    margin: 0 auto;
  }
}

:root {
  --maso-text: #111018;
  --maso-accent-green: #00b779;
}

.maso-footer {
  background-color: #ffffff;
  padding: 72px 0 60px;
  color: var(--maso-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maso-footer .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.maso-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.maso-footer__col--brand {
  text-align: left;
}

.maso-footer__col--contact {
  text-align: left;
}

@media (max-width: 768px) {
  .maso-footer__inner {
    align-items: center;
    text-align: center;
  }

  .maso-footer__col--brand,
  .maso-footer__col--contact {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .maso-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px !important;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .maso-footer__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.maso-footer__logo {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.08em;
}

.maso-footer__tagline {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 40px;
}

.maso-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.maso-footer__social-link {
  font-size: 22px;
  color: var(--maso-accent-green);
  text-decoration: none;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.maso-footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.maso-footer__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--maso-text);
}

.maso-footer__links-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 60px;
  row-gap: 16px;
  font-size: 16px;
}

.maso-footer__links-grid a {
  text-decoration: none;
  color: var(--maso-text);
  transition: color 0.16s ease-out, transform 0.16s ease-out;
}

.maso-footer__links-grid a:hover {
  color: var(--maso-accent-green);
  transform: translateX(2px);
}

.maso-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.maso-footer__list li + li {
  margin-top: 14px;
}

.maso-footer__list a {
  color: var(--maso-text);
  text-decoration: none;
}

.maso-footer__list a:hover {
  color: var(--maso-accent-green);
}

.maso-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.maso-footer__contact-item + .maso-footer__contact-item {
  margin-top: 20px;
}

.maso-footer__icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--maso-accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
}

.maso-footer__contact-text {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .maso-footer__inner {
    column-gap: 40px;
    grid-template-columns: 1.6fr 1fr 1fr;
    row-gap: 40px;
  }

  .maso-footer__col--contact {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .maso-footer {
    padding: 56px 0 48px;
  }

  .maso-footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 32px;
  }

  .maso-footer__col--brand {
    grid-column: span 2;
  }

  .maso-footer__logo {
    margin-bottom: 24px;
  }

  .maso-footer__tagline {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .maso-footer .container {
    padding: 0 20px;
  }

  .maso-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .maso-footer__logo {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .maso-footer__tagline {
    font-size: 16px;
  }

  .maso-footer__social {
    margin-top: 8px;
  }

  .maso-footer__title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .maso-footer__links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .maso-footer__contact-text {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .maso-footer .container {
    padding: 0 16px;
  }

  .maso-footer__inner {
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
  }

  .maso-footer__col--brand,
  .maso-footer__col--contact {
    text-align: left;
  }

  .maso-footer__logo {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .maso-footer__tagline {
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .maso-footer__social {
    gap: 16px;
    margin-top: 4px;
  }

  .maso-footer__social-link {
    font-size: 18px;
  }

  .maso-footer__title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .maso-footer__contact-item {
    font-size: 13px;
    gap: 10px;
  }

  .maso-footer__icon-circle {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .maso-footer__contact-text {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .maso-footer__inner {
    display: flex;
    flex-direction: row;
  }
}

.maso-footer {
  background-color: #ffffff;
  padding: 40px 0;
  color: var(--maso-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maso-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.maso-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
}

.maso-footer__col {
  flex: 0 0 auto;
}

.maso-footer__col--brand {
  text-align: left;
}

.maso-footer__logo {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.maso-footer__tagline {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 26px;
}

.maso-footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.maso-footer__social-link {
  font-size: 20px;
  color: var(--maso-accent-green);
  text-decoration: none;
}

.maso-footer__col--contact {
  text-align: left;
  min-width: 260px;
}

.maso-footer__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
}

.maso-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.maso-footer__contact-item + .maso-footer__contact-item {
  margin-top: 14px;
}

.maso-footer__icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--maso-accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
}

.maso-footer__contact-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .maso-footer {
    padding: 24px 0;
  }

  .maso-footer .container {
    padding: 0 16px;
  }

  .maso-footer__inner {
    max-width: 360px;
    margin: 0 auto;
    gap: 32px;
  }

  .maso-footer__logo {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .maso-footer__tagline {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .maso-footer__social {
    gap: 14px;
  }

  .maso-footer__social-link {
    font-size: 18px;
  }

  .maso-footer__title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .maso-footer__contact-item {
    font-size: 13px;
    gap: 10px;
  }

  .maso-footer__icon-circle {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .maso-footer__contact-text {
    white-space: normal;
  }
}

@media (min-width: 1400px) {
  .maso-footer__inner {
    gap: 140px;
  }
}

.maso-footer {
  background-color: #ffffff !important;
  padding: 40px 0 !important;
  color: var(--maso-text) !important;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.maso-footer .container {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.maso-footer__inner {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 120px !important;
}

.maso-footer__col {
  flex: 0 0 auto !important;
}

.maso-footer__col--brand {
  text-align: left !important;
}

.maso-footer__logo {
  font-weight: 700 !important;
  font-size: 38px !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 12px !important;
}

.maso-footer__tagline {
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  margin: 0 0 26px !important;
}

.maso-footer__social {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.maso-footer__social-link {
  font-size: 20px !important;
  color: var(--maso-accent-green) !important;
  text-decoration: none !important;
}

.maso-footer__col--contact {
  text-align: left !important;
  min-width: 260px !important;
}

.maso-footer__title {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 18px !important;
}

.maso-footer__contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 15px !important;
}

.maso-footer__contact-item + .maso-footer__contact-item {
  margin-top: 14px !important;
}

.maso-footer__icon-circle {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: var(--maso-accent-green) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 15px !important;
}

.maso-footer__contact-text {
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .maso-footer {
    padding: 24px 0 !important;
  }

  .maso-footer .container {
    padding: 0 16px !important;
  }

  .maso-footer__inner {
    max-width: 360px !important;
    margin: 0 auto !important;
    gap: 32px !important;
  }

  .maso-footer__logo {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }

  .maso-footer__tagline {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }

  .maso-footer__social {
    gap: 14px !important;
  }

  .maso-footer__social-link {
    font-size: 18px !important;
  }

  .maso-footer__title {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .maso-footer__contact-item {
    font-size: 13px !important;
    gap: 10px !important;
  }

  .maso-footer__icon-circle {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
  }

  .maso-footer__contact-text {
    white-space: normal !important;
  }
}

@media (min-width: 1400px) {
  .maso-footer__inner {
    gap: 140px !important;
  }
}

.maso-footer__policies {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maso-footer-btn {
  display: inline-block;
  width: 100%;
  padding: 9px 18px;
  border-radius: 999px;
  background: #00b779;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid #00b779;
  transition: 0.2s ease;
}

.maso-footer-btn:hover {
  background: #009a63;
  border-color: #009a63;
  transform: translateY(-2px);
}

.maso-footer-btn--outline {
  background: transparent;
  color: #00b779 !important;
}

.maso-footer-btn--outline:hover {
  background: #00b779;
  color: #fff !important;
}

.maso-page--policy-ar {
  background: #ffffff;
  padding: 80px 0;
}

.maso-policy--ar {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 48px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maso-policy--ar .maso-policy__title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 32px;
}

.maso-policy--ar .maso-policy__heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.maso-policy--ar .maso-policy__subheading {
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 8px;
}

.maso-policy--ar .maso-policy__highlight {
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 183, 121, 0.06);
  border-right: 3px solid #00b779;
  font-weight: 600;
}

.maso-policy--ar .maso-policy__section {
  margin-bottom: 32px;
}

.maso-policy--ar p {
  font-size: 15px;
  line-height: 1.9;
  color: #111827;
}

.maso-policy--ar ul,
.maso-policy--ar ol {
  margin: 8px 0 12px 0;
  padding-right: 1.2rem;
}

.maso-policy--ar li {
  margin-bottom: 4px;
}

.maso-policy--ar .maso-policy__contact {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .maso-page--policy-ar {
    padding: 56px 0;
  }

  .maso-policy--ar {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .maso-policy--ar .maso-policy__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .maso-policy--ar .maso-policy__heading {
    font-size: 18px;
  }

  .maso-policy--ar p,
  .maso-policy--ar li {
    font-size: 14px;
  }
}

.maso-policy__image {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

.maso-policy__image img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .maso-policy__image img {
    max-width: 140px;
  }
}

.maso-footer__col--links {
  min-width: 180px;
}

.maso-footer__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.maso-footer__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.maso-footer__links-list li {
  margin-bottom: 10px;
}

.maso-footer__links-list a {
  color: #d6d6d6;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.maso-footer__links-list a:hover {
  color: #00b779;
}

@media (max-width: 768px) {
  .maso-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .maso-footer__col {
    width: 100%;
  }

  .maso-footer__links-list a {
    font-size: 15px;
  }
}

.maso-footer__col--links {
  min-width: 180px;
}

.maso-footer__col--links .maso-footer__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.maso-footer__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.maso-footer__links-list li {
  margin-bottom: 8px;
}

.maso-footer__links-list a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.maso-footer__links-list a:hover {
  color: #00b779;
  transform: translateX(-3px);
}

html[dir="rtl"] .maso-footer__links-list a:hover {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .maso-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .maso-footer__col {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .maso-policy--ar {
    font-family: "Cairo", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
}

@media (max-width: 768px) {
  .maso-policy--ar {
    font-family: "Cairo", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
}
