/* Synaptyx landing — light glass modern */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --sx-ink: #1a3340;
  --sx-deep: #2a5560;
  --sx-teal: #3d8b88;
  --sx-teal-soft: rgba(61, 139, 136, 0.12);
  --sx-mint: rgba(45, 180, 170, 0.18);
  --sx-sand: #f7f4ef;
  --sx-cream: #fcfbf9;
  --sx-gold: #c9a96a;
  --sx-gold-soft: rgba(201, 169, 106, 0.16);
  --sx-glass: rgba(255, 255, 255, 0.55);
  --sx-glass-strong: rgba(255, 255, 255, 0.72);
  --sx-line: rgba(42, 85, 96, 0.1);
  --sx-shadow: 0 18px 40px rgba(26, 51, 64, 0.06);
  --sx-radius: 20px;
}

html[dir="rtl"] body.landing-page,
html[lang="ar"] body.landing-page {
  font-family: 'Tajawal', 'Plus Jakarta Sans', sans-serif;
}

html[dir="ltr"] body.landing-page,
html[lang="en"] body.landing-page {
  font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
}

body.landing-page {
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(61, 139, 136, 0.1), transparent 55%),
    radial-gradient(800px 480px at 96% 4%, rgba(201, 169, 106, 0.1), transparent 50%),
    linear-gradient(180deg, #fcfbf9 0%, #f7f4ef 45%, #f3f8f7 100%);
  color: var(--sx-ink);
  overflow-x: hidden;
}

/* Navbar */
body.landing-page .navbar {
  position: sticky !important;
  top: 0;
  z-index: 1030;
}

body.landing-page .navbar.default,
body.landing-page .navbar.top-nav-collapse {
  background: rgba(252, 251, 249, 0.72) !important;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--sx-line);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-shadow: none !important;
}

body.landing-page .navbar .landing-logo img {
  max-height: 42px;
  width: auto;
}

body.landing-page .navbar .navbar-nav {
  gap: 0.15rem;
}

body.landing-page .navbar .nav-link {
  font-weight: 600;
  color: var(--sx-deep) !important;
  opacity: 0.78;
  padding: 0.45rem 0.7rem !important;
  border-radius: 999px;
}

body.landing-page .navbar .nav-link:hover,
body.landing-page .navbar .nav-link.active {
  opacity: 1;
  color: var(--sx-teal) !important;
  background: var(--sx-teal-soft);
}

body.landing-page .navbar .nav-item .btn {
  margin-inline-start: 0.35rem;
}

body.landing-page .btn-secondary,
body.landing-page .btn.btn-secondary {
  background: linear-gradient(135deg, rgba(42, 85, 96, 0.92), rgba(61, 139, 136, 0.92)) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 0.7rem 1.45rem !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px rgba(61, 139, 136, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.landing-page .btn-secondary:hover,
body.landing-page .btn.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(61, 139, 136, 0.28);
}

body.landing-page .btn-outline-secondary {
  border-radius: 999px !important;
  border-width: 1px !important;
  font-weight: 700 !important;
  color: var(--sx-deep) !important;
  border-color: rgba(42, 85, 96, 0.18) !important;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(8px);
}

/* Language switcher */
.sx-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--sx-line);
  margin-inline-end: 0.75rem;
  backdrop-filter: blur(8px);
}

.sx-lang-switch a {
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sx-deep);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sx-lang-switch a.active {
  background: rgba(61, 139, 136, 0.9);
  color: #fff;
  box-shadow: 0 6px 14px rgba(61, 139, 136, 0.22);
}

.sx-lang-switch a:not(.active):hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Cover */
body.landing-page header#home,
body.landing-page header.sx-cover {
  position: relative;
  display: block;
  padding: 3.25rem 0 4rem;
  min-height: auto !important;
  background: transparent !important;
  overflow: hidden;
}

body.landing-page header#home::before,
body.landing-page header#home::after,
body.landing-page header.sx-cover::before,
body.landing-page header.sx-cover::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.sx-cover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 85% 20%, rgba(61, 139, 136, 0.1), transparent 60%),
    radial-gradient(700px 360px at 10% 80%, rgba(201, 169, 106, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(252, 251, 249, 0.4) 0%, rgba(243, 248, 247, 0.55) 100%);
  pointer-events: none;
}

.sx-cover-inner {
  position: relative;
  z-index: 2;
}

.sx-brand-mark {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--sx-deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.sx-hero-title {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--sx-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sx-hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(26, 51, 64, 0.68);
  max-width: 32rem;
  margin-bottom: 0;
}

.sx-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1rem;
}

.sx-hero-trust {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 51, 64, 0.52);
  max-width: 30rem;
}

.sx-cover-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 51, 64, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  aspect-ratio: 16 / 10;
}

.sx-cover-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.sx-cover-visual:hover .sx-cover-shot {
  transform: scale(1.035);
}

@media (max-width: 991px) {
  body.landing-page header.sx-cover {
    padding: 2rem 0 2.5rem;
  }

  .sx-cover-visual {
    aspect-ratio: 16 / 11;
    margin-top: 0.5rem;
  }

  .sx-brand-mark {
    font-size: 1.25rem;
  }
}

.platform-section-badge,
.sx-badge {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: var(--sx-teal-soft);
  color: var(--sx-teal);
  border: 1px solid rgba(61, 139, 136, 0.14);
  font-weight: 700;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

body.landing-page section .title .h1,
body.landing-page section h2.h1 {
  font-weight: 800;
  color: var(--sx-ink);
  letter-spacing: -0.02em;
}

/* Systems */
.platform-systems-section {
  padding: 4.5rem 0;
  background: transparent !important;
}

.platform-system-card {
  border-radius: var(--sx-radius) !important;
  background: var(--sx-glass) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow: var(--sx-shadow) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.platform-system-card:hover {
  transform: translateY(-6px);
  background: var(--sx-glass-strong) !important;
  box-shadow: 0 22px 44px rgba(26, 51, 64, 0.1) !important;
}

.platform-system-card .sx-card-shot {
  height: 180px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  border-bottom: 1px solid var(--sx-line);
}

.platform-system-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--sx-teal);
  background: var(--sx-teal-soft);
  border: 1px solid rgba(61, 139, 136, 0.12);
  flex-shrink: 0;
}

.platform-system-icon-property {
  color: #a67c3d;
  background: var(--sx-gold-soft);
  border-color: rgba(201, 169, 106, 0.22);
}

.platform-system-features li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  color: rgba(26, 51, 64, 0.72);
}

.platform-system-features li i {
  margin-top: 0.2rem;
  color: var(--sx-teal) !important;
}

/* Steps */
.platform-steps-section {
  padding: 4.5rem 0;
  position: relative;
}

.platform-step-card {
  padding: 1.85rem 1.4rem;
  border-radius: var(--sx-radius);
  background: var(--sx-glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sx-shadow);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
  height: 100%;
}

.platform-step-card:hover {
  transform: translateY(-5px);
  background: var(--sx-glass-strong);
}

.platform-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--sx-deep);
  background: var(--sx-gold-soft);
  border: 1px solid rgba(201, 169, 106, 0.28);
}

.platform-step-icon {
  font-size: 1.85rem;
  color: var(--sx-teal);
  margin-bottom: 0.75rem;
}

.sx-steps-footer {
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  color: var(--sx-deep);
}

/* Growth — light glass, aligned 5 cards */
.sx-growth {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(61, 139, 136, 0.06), rgba(201, 169, 106, 0.05)),
    rgba(255, 255, 255, 0.25);
  color: var(--sx-ink);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--sx-line);
}

.sx-growth .sx-badge {
  background: rgba(255, 255, 255, 0.55);
  color: var(--sx-teal);
  border: 1px solid rgba(61, 139, 136, 0.14);
}

.sx-growth h2,
.sx-growth .h1,
.sx-growth p.lead {
  color: var(--sx-ink) !important;
}

.sx-growth p.lead {
  opacity: 0.72;
}

.sx-growth-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.sx-growth-item {
  flex: 0 1 calc(33.333% - 0.7rem);
  max-width: calc(33.333% - 0.7rem);
  min-width: 220px;
  padding: 1.4rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sx-shadow);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 148px;
}

.sx-growth-item:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(26, 51, 64, 0.08);
}

.sx-growth-item h4 {
  color: var(--sx-ink);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.sx-growth-item p {
  color: rgba(26, 51, 64, 0.65);
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  flex: 1;
}

.sx-growth-footer {
  margin-top: 2rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--sx-deep);
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .sx-growth-item {
    flex: 0 1 calc(50% - 0.55rem);
    max-width: calc(50% - 0.55rem);
  }
}

@media (max-width: 575px) {
  .sx-growth-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* Benefits */
.platform-benefit-card {
  padding: 1.6rem;
  border-radius: var(--sx-radius);
  background: var(--sx-glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sx-shadow);
  text-align: start;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.platform-benefit-card:hover {
  transform: translateY(-4px);
  background: var(--sx-glass-strong);
}

.platform-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sx-teal-soft);
  color: var(--sx-teal);
  border: 1px solid rgba(61, 139, 136, 0.12);
  font-size: 1.35rem;
}

/* Showcase */
.sx-showcase {
  padding: 4.5rem 0;
}

.sx-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}

.sx-shot {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sx-shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.45);
  position: relative;
}

.sx-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.sx-shot:hover img {
  transform: scale(1.035);
}

.sx-shot.big {
  grid-row: span 2;
  min-height: 420px;
}

.sx-shot.mid {
  min-height: 200px;
}

.sx-shot-caption {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(26, 51, 64, 0.55));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Pricing */
body.landing-page .pricingpricing {
  background: transparent !important;
}

body.landing-page .pricingpricing .card {
  border-radius: var(--sx-radius) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: var(--sx-glass) !important;
  backdrop-filter: blur(14px);
  box-shadow: var(--sx-shadow) !important;
  overflow: hidden;
}

/* Final CTA — soft glass tint */
.sx-final-cta {
  margin: 2rem auto 4rem;
  max-width: 1100px;
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(61, 139, 136, 0.16), rgba(201, 169, 106, 0.12)),
    rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  color: var(--sx-ink);
  box-shadow: var(--sx-shadow);
}

.sx-final-cta h2 {
  color: var(--sx-ink);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.sx-final-cta p {
  color: rgba(26, 51, 64, 0.7);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.sx-final-cta .btn {
  background: linear-gradient(135deg, rgba(42, 85, 96, 0.92), rgba(61, 139, 136, 0.92)) !important;
  color: #fff !important;
  border: none !important;
}

.sx-final-cta .btn-outline-light {
  background: rgba(255, 255, 255, 0.55) !important;
  color: var(--sx-deep) !important;
  border: 1px solid var(--sx-line) !important;
}

/* FAQ */
body.landing-page .frameworks-section .accordion-item {
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: var(--sx-glass);
  backdrop-filter: blur(10px);
}

/* Footer — all white content including logo */
body.landing-page footer.footer,
body.landing-page footer.sx-footer {
  background: linear-gradient(180deg, #2a4550, #1a3340) !important;
  color: #ffffff !important;
  padding: 3rem 0 1.25rem;
  margin-top: 2rem;
}

.sx-footer-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.sx-footer-about {
  max-width: 28rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
  color: #ffffff !important;
  font-size: 0.95rem;
}

.sx-footer-support {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  color: #ffffff !important;
}

.sx-footer-title {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.sx-footer-links,
.sx-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-footer-links li,
.sx-footer-contact li {
  margin-bottom: 0.55rem;
}

.sx-footer-links a,
.sx-footer-contact a,
.sx-footer-bottom-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.92rem;
  transition: opacity 0.2s ease;
}

.sx-footer-links a:hover,
.sx-footer-contact a:hover,
.sx-footer-bottom-links a:hover {
  color: #ffffff !important;
  opacity: 0.85;
}

.sx-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sx-footer-contact i {
  font-size: 1.05rem;
  color: #ffffff !important;
}

.sx-footer-payments {
  margin-top: 1.15rem;
}

.sx-footer-pay-label {
  display: block;
  font-size: 0.8rem;
  color: #ffffff !important;
  margin-bottom: 0.45rem;
}

.sx-footer-pay-img {
  max-width: min(100%, 560px);
  height: auto;
  width: 100%;
  max-height: none;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  display: block;
}

.sx-footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #ffffff !important;
}

.sx-footer-bottom p,
.sx-footer-bottom a {
  color: #ffffff !important;
}

.sx-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.sx-footer-compact {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-top: 0;
}

.sx-legal-page {
  min-height: 100vh;
}

.sx-legal-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: var(--sx-shadow);
}

.sx-legal-card h1 {
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--sx-ink);
}

.sx-legal-card p {
  color: rgba(26, 51, 64, 0.75);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.sx-legal-body {
  color: rgba(26, 51, 64, 0.78);
  line-height: 1.85;
}

.sx-legal-body p {
  margin-bottom: 0.9rem;
}

.sx-legal-body ul,
.sx-legal-body ol {
  padding-inline-start: 1.25rem;
  margin-bottom: 1rem;
}

.sx-legal-body a {
  color: var(--sx-teal);
}

.sx-legal-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sx-legal-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(61, 139, 136, 0.1);
  color: var(--sx-deep);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 991px) {
  .sx-showcase-grid {
    grid-template-columns: 1fr;
  }

  .sx-shot.big {
    grid-row: auto;
    min-height: 240px;
  }

  body.landing-page .navbar .navbar-nav {
    padding: 0.75rem 0 1rem;
    gap: 0.35rem;
  }

  body.landing-page .navbar .nav-item .btn {
    margin: 0.35rem 0 0;
    width: 100%;
  }

  .sx-lang-switch {
    margin: 0.35rem 0;
  }
}
