/* ============================================================
   landing-tjar.css — Khedmahle Landing Page (Light / tjar-style)
   Palette: teal primary, gold accent, soft light backgrounds.
   Loaded AFTER vendor css so it wins the cascade.
   ============================================================ */

:root {
  --tj-primary: #0d9488;
  --tj-primary-dark: #0b7d73;
  --tj-primary-soft: #e8f6f4;
  --tj-gold: #F9D396;
  --tj-gold-dark: #d9a94e;
  --tj-ink: #172033;
  --tj-muted: #5b6b7b;
  --tj-bg-soft: #f5f8fa;
  --tj-card: #ffffff;
  --tj-border: #e5ecf1;
  --tj-shadow: 0 6px 24px rgba(23, 32, 51, 0.08);
  --tj-radius: 18px;
}

body.tjar-landing {
  background: #ffffff;
  color: var(--tj-ink);
  font-family: 'Cairo', 'Noto Kufi Arabic', sans-serif;
  overflow-x: hidden;
}

body.tjar-landing h1,
body.tjar-landing h2,
body.tjar-landing h3,
body.tjar-landing h4,
body.tjar-landing h5,
body.tjar-landing h6 {
  color: var(--tj-ink);
  font-family: 'Cairo', 'Noto Kufi Arabic', sans-serif;
}

body.tjar-landing a {
  text-decoration: none;
  transition: color 0.2s ease;
}

body.tjar-landing p {
  line-height: 1.9;
  color: var(--tj-muted);
}

body.tjar-landing section {
  overflow: hidden;
}

.tj-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.tj-section {
  padding: 80px 0;
}

.tj-section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.tj-eyebrow {
  display: inline-block;
  background: var(--tj-primary-soft);
  color: var(--tj-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.tj-section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.4;
}

.tj-section-title h2 .tj-gold-txt {
  color: var(--tj-gold-dark);
}

.tj-section-title p {
  font-size: 1.05rem;
  color: var(--tj-muted);
}

.tj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tj-btn-primary {
  background: var(--tj-primary);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.tj-btn-primary:hover {
  background: var(--tj-primary-dark);
  transform: translateY(-2px);
  color: #fff !important;
}

.tj-btn-ghost {
  background: #fff;
  color: var(--tj-primary) !important;
  border-color: var(--tj-primary);
}

.tj-btn-ghost:hover {
  background: var(--tj-primary-soft);
  color: var(--tj-primary-dark) !important;
}

.tj-btn-outline {
  background: transparent;
  color: var(--tj-ink) !important;
  border-color: var(--tj-border);
}

.tj-btn-outline:hover {
  border-color: var(--tj-primary);
  color: var(--tj-primary) !important;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.tj-topbar {
  background: var(--tj-primary-dark);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 16px;
}

.tj-topbar p {
  margin: 0;
  color: #fff;
}

/* ============================================================
   Header / Navbar
   ============================================================ */
body.tjar-landing .tj-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tj-border);
  transition: box-shadow 0.25s ease;
}

body.tjar-landing .tj-header.scrolled {
  box-shadow: var(--tj-shadow);
}

.tj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.tj-nav .tj-logo img {
  max-height: 46px;
  width: auto;
}

.tj-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tj-nav-menu > li {
  position: relative;
}

.tj-nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--tj-ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
}

.tj-nav-menu > li > a:hover {
  color: var(--tj-primary);
  background: var(--tj-primary-soft);
}

.tj-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 14px;
  box-shadow: var(--tj-shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 50;
}

.tj-nav-menu > li:hover .tj-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tj-dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--tj-ink);
  font-size: 0.92rem;
  border-radius: 8px;
}

.tj-dropdown a:hover {
  background: var(--tj-primary-soft);
  color: var(--tj-primary);
}

.tj-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tj-nav-actions .tj-btn {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.tj-nav-actions .tj-btn-outline {
  color: var(--tj-primary) !important;
  border-color: var(--tj-primary);
}

.tj-nav-actions .tj-btn-outline:hover {
  background: var(--tj-primary-soft);
}

.tj-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--tj-border);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--tj-ink);
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .tj-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tj-nav-menu {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--tj-shadow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1100;
    overflow-y: auto;
  }

  html[dir="rtl"] .tj-nav-menu {
    inset: 0 0 0 auto;
    transform: translateX(100%);
  }

  .tj-nav-menu.open {
    transform: translateX(0);
  }

  .tj-nav-menu > li {
    width: 100%;
  }

  .tj-nav-menu > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .tj-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px dashed var(--tj-border);
    border-radius: 0;
    display: none;
  }

  .tj-nav-menu > li.open .tj-dropdown {
    display: block;
  }

  .tj-nav-actions .tj-btn span.tj-hide-sm {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.tj-hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(13, 148, 136, 0.12) 0, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(249, 211, 150, 0.35) 0, transparent 45%),
    linear-gradient(180deg, #f0faf9 0%, #ffffff 100%);
  padding: 70px 0 0;
  text-align: center;
}

.tj-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tj-hero-deco-1 {
  width: 320px;
  height: 320px;
  background: rgba(13, 148, 136, 0.07);
  top: -120px;
  right: -90px;
}

.tj-hero-deco-2 {
  width: 220px;
  height: 220px;
  background: rgba(249, 211, 150, 0.3);
  bottom: -60px;
  left: -70px;
}

.tj-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 700;
  color: var(--tj-primary-dark);
  font-size: 0.9rem;
  box-shadow: var(--tj-shadow);
  margin-bottom: 22px;
}

.tj-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 auto 18px;
  max-width: 900px;
}

.tj-hero h1 .tj-gold-txt {
  color: var(--tj-gold-dark);
  position: relative;
}

.tj-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--tj-muted);
}

.tj-hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 16px;
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--tj-shadow);
}

.tj-hero-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--tj-ink);
  background: transparent;
  min-width: 0;
}

.tj-hero-form .tj-btn {
  white-space: nowrap;
}

.tj-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.tj-hero-mock {
  position: relative;
  max-width: 900px;
  margin: 55px auto 0;
  padding-bottom: 40px;
}

.tj-hero-mock > img,
.tj-hero-mock > video {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--tj-border);
  box-shadow: 0 30px 60px rgba(23, 32, 51, 0.18);
}

.tj-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(23, 32, 51, 0.16);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--tj-ink);
  animation: tj-float 5s ease-in-out infinite;
}

.tj-float-card .tj-fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--tj-primary);
  font-size: 1.05rem;
}

.tj-float-card.tj-fc-1 {
  top: 60px;
  right: -18px;
  animation-delay: 0s;
}

.tj-float-card.tj-fc-2 {
  top: 220px;
  left: -24px;
  animation-delay: 1.2s;
}

.tj-float-card.tj-fc-3 {
  bottom: 70px;
  right: 30px;
  animation-delay: 0.6s;
}

html[dir="rtl"] .tj-float-card.tj-fc-1 {
  right: auto;
  left: -18px;
}

html[dir="rtl"] .tj-float-card.tj-fc-2 {
  left: auto;
  right: -24px;
}

.tj-float-card small {
  display: block;
  font-weight: 500;
  color: var(--tj-muted);
}

@keyframes tj-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 767.98px) {
  .tj-hero-form {
    flex-direction: column;
  }

  .tj-hero-form .tj-btn {
    width: 100%;
  }

  .tj-float-card {
    display: none;
  }
}

/* ============================================================
   Trusted logos marquee
   ============================================================ */
.tj-trusted {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--tj-border);
  border-bottom: 1px solid var(--tj-border);
}

.tj-trusted-label {
  text-align: center;
  color: var(--tj-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.tj-trusted-label b {
  color: var(--tj-primary-dark);
}

.tj-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.tj-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: tj-marquee 28s linear infinite;
}

.tj-marquee:hover .tj-marquee-track {
  animation-play-state: paused;
}

.tj-marquee-track img {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.25s ease;
}

.tj-marquee-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes tj-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

html[dir="rtl"] .tj-marquee-track {
  animation-name: tj-marquee-rtl;
}

@keyframes tj-marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ============================================================
   Stats
   ============================================================ */
.tj-stats {
  padding: 70px 0;
  background: var(--tj-bg-soft);
}

.tj-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tj-stat-card {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.25s ease;
}

.tj-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tj-shadow);
  border-color: var(--tj-primary);
}

.tj-stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--tj-primary);
  background: var(--tj-primary-soft);
}

.tj-stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--tj-ink);
  line-height: 1.2;
}

.tj-stat-num .tj-suffix {
  color: var(--tj-primary);
}

.tj-stat-card p {
  margin: 6px 0 0;
  font-weight: 600;
  color: var(--tj-muted);
}

@media (max-width: 991.98px) {
  .tj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tj-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Steps (How it works)
   ============================================================ */
.tj-steps {
  padding: 80px 0;
  background: #fff;
}

.tj-steps-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tj-steps-img {
  position: relative;
}

.tj-steps-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--tj-shadow);
}

.tj-step-item {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.tj-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
}

html[dir="rtl"] .tj-step-head {
  text-align: right;
}

.tj-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--tj-primary-soft);
  color: var(--tj-primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tj-step-head h3 {
  flex: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tj-ink);
}

.tj-step-arrow {
  color: var(--tj-muted);
  transition: transform 0.25s ease;
}

.tj-step-item.open .tj-step-arrow {
  transform: rotate(180deg);
  color: var(--tj-primary);
}

.tj-step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tj-step-body-inner {
  padding: 0 20px 18px 20px;
  color: var(--tj-muted);
}

@media (max-width: 991.98px) {
  .tj-steps-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Features grid
   ============================================================ */
.tj-features {
  padding: 80px 0;
  background: var(--tj-bg-soft);
}

.tj-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tj-feature-card {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.tj-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tj-shadow);
  border-color: var(--tj-primary);
}

.tj-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: var(--tj-primary);
  margin-bottom: 18px;
}

.tj-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tj-feature-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.tj-feature-link {
  font-weight: 700;
  color: var(--tj-primary) !important;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tj-feature-link:hover {
  color: var(--tj-primary-dark) !important;
  gap: 10px;
}

@media (max-width: 991.98px) {
  .tj-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tj-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Element / alternating rows
   ============================================================ */
.tj-element {
  padding: 80px 0;
  background: #fff;
}

.tj-element-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.tj-element-row:last-child {
  margin-bottom: 0;
}

.tj-element-row.reverse .tj-element-text {
  order: 2;
}

.tj-element-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--tj-shadow);
}

.tj-element-text span {
  color: var(--tj-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.tj-element-text h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  margin: 12px 0 14px;
  line-height: 1.4;
}

.tj-element-text p {
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .tj-element-row,
  .tj-element-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tj-element-row.reverse .tj-element-text {
    order: 1;
  }
}

/* ============================================================
   Discover
   ============================================================ */
.tj-discover {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--tj-primary-dark) 0%, var(--tj-primary) 100%);
}

.tj-discover .tj-section-title h2,
.tj-discover .tj-section-title p {
  color: #fff;
}

.tj-discover .tj-eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tj-discover .tj-section-title h2 .tj-gold-txt {
  color: #fff;
}

.tj-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tj-discover-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tj-radius);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.tj-discover-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.tj-discover-card .tj-feature-icon {
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.18);
}

.tj-discover-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tj-discover-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

.tj-discover-cta {
  text-align: center;
  margin-top: 40px;
}

.tj-discover-cta .tj-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.tj-discover-cta .tj-btn-ghost:hover {
  background: #fff;
  color: var(--tj-primary) !important;
}

@media (max-width: 991.98px) {
  .tj-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tj-discover-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Payment methods tabs
   ============================================================ */
.tj-payments {
  padding: 80px 0;
  background: #fff;
}

.tj-pay-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.tj-pay-tab {
  background: var(--tj-bg-soft);
  border: 1px solid var(--tj-border);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 700;
  color: var(--tj-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.tj-pay-tab.active,
.tj-pay-tab:hover {
  background: var(--tj-primary);
  border-color: var(--tj-primary);
  color: #fff;
}

.tj-pay-panel {
  display: none;
  background: var(--tj-bg-soft);
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius);
  padding: 36px 30px;
}

.tj-pay-panel.active {
  display: block;
}

.tj-pay-panel h3 {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.tj-pay-panel > p {
  margin-bottom: 24px;
}

.tj-pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tj-pay-chip {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  color: var(--tj-ink);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.tj-pay-chip:hover {
  border-color: var(--tj-primary);
  color: var(--tj-primary);
  transform: translateY(-2px);
}

.tj-pay-chip i {
  color: var(--tj-primary);
  font-size: 1.1rem;
}

/* ============================================================
   Screenshots
   ============================================================ */
.tj-screenshots {
  padding: 80px 0;
  background: var(--tj-bg-soft);
}

.tj-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tj-screenshot-card {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius);
  overflow: hidden;
  transition: all 0.25s ease;
}

.tj-screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tj-shadow);
}

.tj-screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.tj-screenshot-card h5 {
  padding: 16px 18px;
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .tj-screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tj-screens-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Plans / pricing
   ============================================================ */
.tj-plans {
  padding: 80px 0;
  background: #fff;
}

.tj-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.tj-plan-card {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.tj-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tj-shadow);
}

.tj-plan-card.tj-plan-featured {
  border: 2px solid var(--tj-primary);
  background: linear-gradient(180deg, #fff 0%, var(--tj-primary-soft) 100%);
}

.tj-plan-tag {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--tj-gold);
  color: #4a3a10;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 30px;
}

.tj-plan-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--tj-primary-dark);
  margin-bottom: 6px;
}

.tj-plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--tj-ink);
  margin-bottom: 4px;
}

.tj-plan-price small {
  font-size: 0.9rem;
  color: var(--tj-muted);
  font-weight: 600;
}

.tj-plan-trial {
  font-size: 0.85rem;
  color: var(--tj-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.tj-plan-desc {
  font-size: 0.92rem;
  color: var(--tj-muted);
  margin-bottom: 16px;
}

.tj-plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.tj-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--tj-ink);
}

.tj-plan-features li i {
  color: var(--tj-primary);
  flex-shrink: 0;
}

.tj-plan-card .tj-btn {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .tj-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tj-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Testimonials slider
   ============================================================ */
.tj-testimonials {
  padding: 80px 0;
  background: var(--tj-bg-soft);
}

.tj-tst-slider {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

.tj-tst-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tj-tst-slider .swiper-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  box-sizing: border-box;
  padding: 0 10px;
  min-width: 0;
}

.tj-tst-slider .tj-tst-card {
  height: 100%;
}

@media (max-width: 1023.98px) {
  .tj-tst-slider .swiper-slide {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (max-width: 639.98px) {
  .tj-tst-slider .swiper-slide {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.tj-tst-card {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius);
  padding: 26px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(23, 32, 51, 0.05);
}

.tj-tst-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tj-tst-quote {
  font-size: 2rem;
  color: var(--tj-primary);
  line-height: 1;
}

.tj-tst-stars {
  color: var(--tj-gold-dark);
  letter-spacing: 2px;
}

.tj-tst-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tj-tst-card > p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.tj-tst-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tj-tst-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.tj-tst-user b {
  display: block;
  font-weight: 700;
  color: var(--tj-ink);
}

.tj-tst-user small {
  color: var(--tj-muted);
}

.tj-tst-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.tj-tst-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--tj-border);
  background: #fff;
  color: var(--tj-ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tj-tst-nav button:hover {
  background: var(--tj-primary);
  border-color: var(--tj-primary);
  color: #fff;
}

.tj-tst-long {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.tj-faq {
  padding: 80px 0;
  background: #fff;
}

.tj-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.tj-faq-item {
  background: #fff;
  border: 1px solid var(--tj-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.tj-faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--tj-ink);
  cursor: pointer;
  text-align: right;
}

html[dir="rtl"] .tj-faq-head {
  text-align: right;
}

.tj-faq-item.open {
  border-color: var(--tj-primary);
}

.tj-faq-item.open .tj-faq-head {
  color: var(--tj-primary-dark);
}

.tj-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tj-primary-soft);
  color: var(--tj-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.tj-faq-item.open .tj-faq-icon {
  transform: rotate(180deg);
}

.tj-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tj-faq-body-inner {
  padding: 0 22px 18px;
  color: var(--tj-muted);
}

/* ============================================================
   CTA banner
   ============================================================ */
.tj-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--tj-primary) 0%, var(--tj-primary-dark) 100%);
  text-align: center;
}

.tj-cta h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.tj-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 26px;
}

.tj-cta .tj-btn-ghost {
  background: #fff;
  color: var(--tj-primary) !important;
  border-color: #fff;
}

.tj-cta .tj-btn-ghost:hover {
  background: transparent;
  color: #fff !important;
}

/* ============================================================
   Footer
   ============================================================ */
.tj-footer {
  background: #0e1b2a;
  color: rgba(255, 255, 255, 0.92);
  padding: 70px 0 0;
}

.tj-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}

.tj-footer h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.tj-footer-logo img {
  max-height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.tj-footer p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.tj-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tj-footer ul li {
  margin-bottom: 10px;
}

.tj-footer ul li a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.tj-footer ul li a:hover {
  color: var(--tj-gold);
}

.tj-footer-subscribe {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  margin-top: 16px;
}

.tj-footer-subscribe input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--tj-ink);
  background: transparent;
  min-width: 0;
}

.tj-footer-subscribe .tj-btn {
  padding: 10px 18px;
  white-space: nowrap;
}

.tj-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.tj-footer-bottom a {
  color: var(--tj-gold);
}

@media (max-width: 991.98px) {
  .tj-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .tj-footer-grid {
    grid-template-columns: 1fr;
  }

  .tj-footer-subscribe {
    flex-direction: column;
  }

  .tj-footer-subscribe .tj-btn {
    width: 100%;
  }
}

/* ============================================================
   Scroll progress
   ============================================================ */
body.tjar-landing #larm-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--tj-primary), var(--tj-gold));
  z-index: 9999;
  border-radius: 0 3px 3px 0;
}
