*{
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;   
    box-sizing: border-box;
    list-style-position: inside;
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}
#g_a11y_announcement {
  display: none !important;
}
#menu-item-12 .main-nav .container, #menu-item-12 .main-footer .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.terms-content h3,.terms-content h3{
    display: none;
}
.template {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Убираем ограничение ширины для редактора лендинга */
.main-content.full-width-content .container.no-max-width {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.main-content.full-width-content {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .main-content.full-width-content .container.no-max-width {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-nav {
  background: rgb(255 255 255 / 85%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.main-nav .container {
  padding: 0.75rem 0;
}

.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 0.75rem;
}

.nav-brand,
.nav-cta {
  flex-shrink: 0;
}


.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #12B886;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(18, 184, 134, 0.28);
  padding: 10px;
}

.brand-icon-svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #111827;
}

.brand-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: #111827;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #12B886;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: 0.18rem;
}

#menu {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  display: inline-block;
}

#menu a:hover {
  color: #ffffff;
}

.desktop-menu {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.desktop-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  display: inline-block;
}

.desktop-menu a:hover {
  color: #ffffff;
}

.desktop-menu a.is-active,
.desktop-menu a.router-link-active,
.desktop-menu a.router-link-exact-active {
  color: #ffffff;
  background: #424242;
}

.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: rgb(23 23 23);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu-btn:hover .burger-line {
  background: rgb(23 23 23);
}

.burger-line.active:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-line.active:nth-child(2) {
  opacity: 0;
}

.burger-line.active:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 1rem;
}

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

.mobile-menu-content {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

:deep(.mobile-menu .module-menu) {
  flex-direction: column;
  align-items: flex-start;
}

:deep(.mobile-menu .module-menu .menu-list) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

:deep(.mobile-menu .module-menu .menu-item > a) {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1.1rem;
}

:deep(.mobile-menu .module-menu .submenu) {
  width: 100%;
  padding-right: 1rem;
  margin-top: 0.5rem;
}

:deep(.mobile-menu .module-menu .submenu-item > a) {
  padding: 0.5rem 0;
  font-size: 1rem;
}

#menu li{
    display: inline-block;
    padding: 0 5px;
}

.module-menu li{
    display: block;
    padding: 0 10px;
}

#menu a,.module-menu a {
  color: rgb(71 85 105);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: all 0.15s ease;
  border-radius: 12px;
  display: inline-block;
}

#menu a:hover {
  color: rgb(23 23 23);
}

#menu a.router-link-exact-active,
.main-nav .module-menu .menu-item > a.is-active,
.main-nav .module-menu .menu-item-active > a {
  color: rgb(23 23 23) !important;
  font-weight: 700 !important;
  background: transparent;
}

:deep(.module-menu) {
  display: flex;
  justify-content: center;
}

:deep(.module-menu .menu-list) {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

:deep(.module-menu .menu-item > a) {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 20px;
  transition: all 0.15s ease;
  display: inline-block;
  white-space: nowrap;
}

:deep(.module-menu .menu-item > a:hover) {
  color: #ffffff;
}

:deep(.module-menu .menu-item > a.is-active),
:deep(.module-menu .menu-item-active > a),
:deep(.module-menu .menu-item > a.router-link-active),
:deep(.module-menu .menu-item > a.router-link-exact-active) {
  color: #ffffff;
  background: #424242;
}

:deep(.module-menu .submenu) {
  list-style: none;
  margin: 0.25rem 0 0 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

:deep(.module-menu .submenu-item > a) {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

:deep(.module-menu .submenu-item > a.is-active),
:deep(.module-menu .submenu-item > a:hover),
:deep(.module-menu .submenu-item > a.router-link-active),
:deep(.module-menu .submenu-item > a.router-link-exact-active) {
  color: #ffffff;
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  background: rgb(23 23 23);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  border: none;
}

.cta-button:hover {
  background: rgb(30 41 59);
  cursor: pointer;
}

.user-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 0;
}

.user-button i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.user-button-text {
  max-width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-content {
  flex: 1;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modules-footer {
  background: #34495e;
  color: white;
  margin-top: auto;
}

.loading {
  text-align: center;
  padding: 2rem;
  color: #7f8c8d;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  color: #0f172a;
  padding: 1.2rem 1.6rem 1.6rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url('/images/train.jpeg') center/cover no-repeat;
  filter: brightness(0.62);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  gap: 1.6rem;
  align-items: end;
  max-width: 1260px;
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.6rem 2.4rem 2.2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
  max-width: 600px;
}

.hero-content {
  text-align: right;
}

.hero-content h1 {
  margin: 0.6rem 0 0.6rem;
  font-size: clamp(2.5rem, 3.5vw, 3.2rem);
  line-height: 1.18;
}

.hero-content .accent {
  color: #0b5fe8;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #1f2937;
  margin: 0.35rem 0 1.35rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: rgb(255 255 255 / 45%);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin: 1.35rem 0 1.1rem;
}

.btn-primary {
  padding: 0.75rem 1.8rem;
  background: rgb(30 41 59);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: rgb(30 41 59);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1d4ed8;
  border: 1.5px solid #d6e2ff;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
  direction: rtl;
}

.btn-outline:hover {
  background: #eef3ff;
  color: #0b5fe8;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.btn-outline i {
  font-size: 1.05rem;
  color: #2563eb;
}

/* Auth modal */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.auth-modal {
  width: min(560px, 100%);
  background: linear-gradient(180deg, #fdfdfd 0%, #f5f7fb 100%);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.auth-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 1.2rem;
}

.auth-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #0b5fe8, #1d4ed8);
  color: #fff;
  clip-path: inset(0 round 0 0 24px 24px);
}

.auth-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.auth-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.auth-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: -24px 1.2rem 1.2rem;
  gap: 0.6rem;
}

.auth-tab {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f5f7fb;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.12s ease;
}

.auth-tab.active {
  background: #ffffff;
  border-color: #c7d2fe;
  color: #0b5fe8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.auth-body {
  padding: 0 2rem 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.auth-label {
  font-weight: 700;
  color: #111827;
  margin-top: 0.25rem;
}

.auth-input {
  position: relative;
}

.auth-input input {
  width: 100%;
  padding: 0.95rem 3rem 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.auth-input i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}

.auth-link {
  text-align: right;
  color: #2563eb;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.15rem;
}

.auth-primary {
  margin-top: 0.4rem;
  padding: 1rem 1.2rem;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #0b5fe8);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.auth-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.4);
}

.auth-terms {
  text-align: center;
  font-size: 0.9rem;
  color: #4b5563;
}

.auth-terms a {
  color: #2563eb;
  font-weight: 700;
}

@media (max-width: 640px) {
  .auth-modal {
    width: 100%;
    border-radius: 20px;
  }
  .auth-header {
    padding: 2rem 1.25rem 1.1rem;
  }
  .auth-tabs {
    margin: -18px 1rem 1rem;
  }
  .auth-body {
    padding: 0 1.25rem 1.5rem;
  }
}

.hero-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: linear-gradient(135deg, rgb(255 255 255 / 70%), rgb(245 245 245 / 55%));
  border: 1px solid rgba(124, 94, 224, 0.18);
  border-radius: 999px;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  direction: rtl;
}

.meta-pill i {
  font-size: 1rem;
}

.pill-blue i {
  color: #1d4ed8;
}

.pill-green i {
  color: #16a34a;
}

.pill-purple i {
  color: #2e6eea;
}

.hero-stores {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  justify-self: end;
  padding-right: 0.5rem;
}

.hero-stores img {
  width: 200px;
  max-width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.hero-footer-strip {
  background: #4a38dc;
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(74, 56, 220, 0.22);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
    .container,.main-nav .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-layout{
        grid-template-columns: 1fr;
    }
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  .nav-bar {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    position: relative;
  }
  
  .desktop-menu {
    display: none !important;
  }
  
  .nav-cta {
    display: none !important;
  }
  
  .burger-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: block;
  }
  
  .nav-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.4rem;
  }
  .hero-stores {
    justify-items: center;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  .hero-banner {
    min-height: 560px;
  }
}

/* Hero Section Styles */
#test {
  width: 100%;
}

.org-security-block {
  direction: rtl;
  background: #f3f4f6;
  padding: 2rem 0.9rem 2.4rem;
}

.org-security-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.org-security-chip {
  width: fit-content;
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #cde8df;
  background: #f4faf8;
  color: #2f8a70;
  padding: 0.48rem 1.28rem;
  font-weight: 500;
  line-height: 1.1;
}

.org-security-title {
  margin: 1.2rem 0 0;
  max-width: 860px;
  color: #0f172a;
  font-size: clamp(2.2rem, 5.6vw, 3.5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.org-security-lead {
  margin: 1.8rem 0 0;
  color: #233041;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.45;
  font-weight: 700;
}

.org-security-image-wrap {
  margin-top: 1.5rem;
  border-radius: 30px;
  overflow: hidden;
}

.org-security-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.org-security-text {
  margin: 1.5rem 0 0;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

.org-security-highlight {
  margin-top: 1.55rem;
  background: #ffffff;
  border: 1px solid #dfe6eb;
  border-right: 6px solid #21c18d;
  border-radius: 16px;
  padding: 1.45rem 1.35rem;
}

.org-security-highlight h3 {
  margin: 0;
  color: #111827;
  line-height: 1.28;
  font-weight: 700;
}

.org-security-highlight p {
  margin: 0.7rem 0 0;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

.org-security-kpis {
  margin-top: 1.7rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e4e7eb;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.org-security-kpi {
  background: #ffffff;
  border: 1px solid #eceff2;
  border-radius: 16px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 0.8rem;
}

.org-security-kpi-value {
  color: #111827;
  font-size: clamp(2rem, 1.2vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
}

.org-security-kpi-label {
  margin-top: 0.55rem;
  color: #667085;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 900px) {
  .org-security-title {
    max-width: none;
  }

  .org-security-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .org-security-block {
    padding: 1.4rem 0.72rem 1.8rem;
  }

  .org-security-chip {
    font-size: 1rem;
  }

  .org-security-title {
    line-height: 1.1;
  }

  .org-security-lead,
  .org-security-text,
  .org-security-highlight p {
    line-height: 1.55;
  }

  .org-security-highlight {
    border-right-width: 4px;
    padding: 1rem;
  }

  .org-security-kpis {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .org-security-kpi {
    min-height: 132px;
  }
}

.final-cta {
  direction: rtl;
  background: #f3f4f6;
  padding: 2.4rem 1rem 2.8rem;
}

.final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
}

.final-cta-text {
  margin: 1rem auto 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 1.32rem;
  line-height: 1.6;
  font-weight: 400;
}

.final-cta-btn {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #111827;
  color: #111827;
  background: #f8f8f8;
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 700px) {
  .final-cta-text {
    font-size: 1.02rem;
  }
}

.dept-solutions {
  direction: rtl;
  background: #f3f4f6;
  padding: 1.2rem 0.4rem 2rem;
}

/* Admin editor may wrap inputs/labels/images into <p> tags */
.dept-solutions > p:first-of-type,
.dept-tabs > p {
  margin: 0;
}

.dept-panel > p {
  margin: 0;
}

.dept-panel > p .dept-image {
  display: block;
}

.dept-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dept-head {
  text-align: center;
  max-width: 980px;
  margin: 2rem auto 5rem;
}

.dept-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f7f0;
  color: #0f9f77;
  border: 1px solid #cae9dd;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.dept-title {
  margin: 0.7rem 0 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.13;
  font-weight: 700;
}

.dept-layout {
  max-width: 1180px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 3rem;
  align-items: start;
}

.dept-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dept-tab {
  background: #f6f7f8;
  border: 1px solid #eceff2;
  border-radius: 16px;
  min-height: 72px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: #1f2937;
  font-weight: 700;
}

.dept-tab i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f2f4f6;
  border: 1px solid #e7eaee;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.dept-panels {
  position: relative;
}

.dept-panel {
  display: none;
  background: #f7f8f9;
  border: 1px solid #e9ecef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  grid-template-columns: 1fr 330px;
}

.dept-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  margin: auto !important;
}

.dept-copy {
  padding: 1.35rem 1.3rem;
  text-align: right;
  background: #fff;
}

.dept-copy-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #e8f7f0;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.dept-copy h3 {
  margin: 0;
  color: #111827;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.dept-copy p {
  margin: 0.85rem 0 1rem;
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
}

.dept-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dept-copy li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #1f2937;
  font-size: 1.03rem;
  line-height: 1.5;
  font-weight: 500;
}

.dept-copy li i {
  color: #10b981;
}

.dept-copy a {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  line-height: 1.2;
  font-weight: 700;
}

#dept-slide-1:checked ~ .dept-layout .tab-1,
#dept-slide-2:checked ~ .dept-layout .tab-2,
#dept-slide-3:checked ~ .dept-layout .tab-3,
#dept-slide-4:checked ~ .dept-layout .tab-4,
#dept-slide-5:checked ~ .dept-layout .tab-5 {
  border-color: #8bdcc1;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12) inset;
  background: #fff;
}

#dept-slide-1:checked ~ .dept-layout .tab-1 i,
#dept-slide-2:checked ~ .dept-layout .tab-2 i,
#dept-slide-3:checked ~ .dept-layout .tab-3 i,
#dept-slide-4:checked ~ .dept-layout .tab-4 i,
#dept-slide-5:checked ~ .dept-layout .tab-5 i {
  background: #dcfce7;
  border-color: #bde9d4;
  color: #10b981;
}

#dept-slide-1:checked ~ .dept-layout .panel-1,
#dept-slide-2:checked ~ .dept-layout .panel-2,
#dept-slide-3:checked ~ .dept-layout .panel-3,
#dept-slide-4:checked ~ .dept-layout .panel-4,
#dept-slide-5:checked ~ .dept-layout .panel-5 {
  display: grid;
}

/* Robust activation when editor wraps radios inside <p> */
.dept-solutions:has(#dept-slide-1:checked) .tab-1,
.dept-solutions:has(#dept-slide-2:checked) .tab-2,
.dept-solutions:has(#dept-slide-3:checked) .tab-3,
.dept-solutions:has(#dept-slide-4:checked) .tab-4,
.dept-solutions:has(#dept-slide-5:checked) .tab-5 {
  border-color: #8bdcc1;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12) inset;
  background: #fff;
}

.dept-solutions:has(#dept-slide-1:checked) .tab-1 i,
.dept-solutions:has(#dept-slide-2:checked) .tab-2 i,
.dept-solutions:has(#dept-slide-3:checked) .tab-3 i,
.dept-solutions:has(#dept-slide-4:checked) .tab-4 i,
.dept-solutions:has(#dept-slide-5:checked) .tab-5 i {
  background: #dcfce7;
  border-color: #bde9d4;
  color: #10b981;
}

.dept-solutions:has(#dept-slide-1:checked) .panel-1,
.dept-solutions:has(#dept-slide-2:checked) .panel-2,
.dept-solutions:has(#dept-slide-3:checked) .panel-3,
.dept-solutions:has(#dept-slide-4:checked) .panel-4,
.dept-solutions:has(#dept-slide-5:checked) .panel-5 {
  display: grid;
}

@media (max-width: 980px) {
  .dept-layout {
    grid-template-columns: 1fr;
  }

  .dept-panel {
    grid-template-columns: 1fr;
  }

  .dept-image {
    min-height: 360px;
  }
}

.capabilities-block {
  direction: rtl;
  background: #f3f4f6;
  padding: 2rem 1rem 2.2rem;
}

.capabilities-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.capabilities-title {
  margin: 0 0 1.4rem;
  text-align: center;
  color: #111827;
  line-height: 1.2;
  font-weight: 700;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.capability-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 1.4rem 1.2rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.capability-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef2f7;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
}

.capability-card-title {
  margin: 1rem 0 0.55rem;
  color: #111827;
  line-height: 1.25;
  font-weight: 700;
}

.capability-card-text {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
}

.capabilities-cta-wrap {
  margin-top: 1.55rem;
  display: flex;
  justify-content: center;
}

.capabilities-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  padding: 1rem 1.65rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.25);
}

@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .capability-card-title {
    font-size: 1.22rem;
  }

  .capability-card-text {
    font-size: 0.98rem;
  }

  .capabilities-cta {
    min-width: 0;
    width: 100%;
    max-width: 360px;
    font-size: 1rem;
  }
}

.ai-integration-block {
  direction: rtl;
  padding: 2rem 1.25rem 2.4rem;
}

.ai-integration-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2.1rem;
  align-items: center;
}

.ai-integration-content {
  text-align: right;
}

.ai-integration-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #efe7fb;
  color: #9b5de5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.ai-integration-title {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
}

.ai-integration-description {
  margin: 1rem 0 1.15rem;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
}

.ai-integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-integration-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.ai-integration-list i {
  color: #8b5cf6;
  font-size: 1rem;
}

.ai-integration-visual {
  display: flex;
  justify-content: center;
}

.ai-integration-card {
  width: 100%;
  min-height: 420px;
  border-radius: 30px;
  border: 1px solid #e3e5e8;
  background: #f5f6f7;
  padding: 2rem 1.5rem;
  position: relative;
}

.ai-step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ai-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8f0ff;
  color: #5b7fcf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ai-step-icon-success {
  background: #10b981;
  color: #ffffff;
}

.ai-step-title {
  color: #1f2937;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.ai-step-subtitle {
  margin-top: 0.28rem;
  color: #6b7280;
  font-size: 0.87rem;
  line-height: 1.45;
  font-weight: 500;
}

.ai-step-middle .ai-step-icon {
  background: #f2e9ff;
  color: #9b5de5;
}

.ai-step-bottom {
  background: #e8f8f1;
  border-color: #bde9d6;
}

.ai-step-bottom .ai-step-title,
.ai-step-bottom .ai-step-subtitle {
  color: #0f766e;
}

.ai-step-divider {
  width: 1px;
  height: 20px;
  border-right: 1px solid #d6d9de;
  margin: 0.45rem auto;
}

@media (max-width: 980px) {
  .ai-integration-grid {
    grid-template-columns: 1fr;
  }

  .ai-integration-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .ai-integration-block {
    padding: 1.4rem 0.9rem 1.8rem;
  }

  .ai-integration-title {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .ai-integration-description {
    font-size: 1rem;
  }

  .ai-step-title {
    font-size: 1.06rem;
  }
}

.flow-hero {
  direction: rtl;
  background: #f5f6f7;
  padding: 1.9rem 1.25rem 2.2rem;
}

.flow-hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 2.2rem;
  align-items: center;
}

.flow-hero-content {
  text-align: right;
}

.flow-hero-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e8f7f0;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.flow-hero-title {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
}

.flow-hero-description {
  margin: 1rem 0 1.2rem;
  color: #4b5563;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
}

.flow-hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.flow-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.flow-hero-list i {
  color: #10b981;
  font-size: 1rem;
}

.flow-hero-visual {
  display: flex;
  justify-content: center;
}

.flow-canvas {
  width: 100%;
  min-height: 380px;
  border-radius: 28px;
  border: 1px solid #e6e8eb;
  background: #f4f5f6;
  position: relative;
  overflow: hidden;
}

.flow-node {
  position: absolute;
  background: #ffffff;
  border: 1px solid #dde2e7;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0.95rem;
}

.flow-node-trigger {
  top: 34px;
  left: 32px;
  width: 250px;
}

.flow-node-api {
  top: 116px;
  left: 226px;
  width: 320px;
  border-color: #b9e7d5;
}

.flow-node-label {
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flow-node-text {
  margin-top: 0.25rem;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 600;
}

.flow-node-status {
  margin-top: 0.68rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 600;
}

.flow-node-status strong {
  color: #059669;
  font-weight: 700;
}

.flow-connector {
  position: absolute;
  top: 88px;
  left: 278px;
  width: 36px;
  height: 40px;
  border-left: 2px dashed #10b981;
  border-bottom: 2px dashed #10b981;
  border-bottom-left-radius: 20px;
}

@media (max-width: 980px) {
  .flow-hero-grid {
    grid-template-columns: 1fr;
  }

  .flow-canvas {
    min-height: 320px;
  }

  .flow-node-api {
    left: 180px;
    width: 290px;
  }

  .flow-connector {
    left: 232px;
  }
}

@media (max-width: 700px) {
  .flow-hero {
    padding: 1.5rem 0.9rem 1.8rem;
  }

  .flow-hero-title {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .flow-hero-description {
    font-size: 1rem;
  }

  .flow-canvas {
    min-height: 300px;
  }

  .flow-node-trigger {
    left: 16px;
    width: 220px;
  }

  .flow-node-api {
    left: 130px;
    width: calc(100% - 150px);
  }

  .flow-connector {
    left: 188px;
  }
}

.enterprise-intro {
  direction: rtl;
  padding: 1.4rem 1rem 1.8rem;
}

.enterprise-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.enterprise-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: #e8f7f0;
  border: 1px solid #c9eadc;
  color: #0f766e;
  font-size: 0.92rem;
  font-weight: 700;
}

.enterprise-intro-title {
  margin: 1.05rem 0 0;
  color: #111827;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.enterprise-intro-description {
  margin: 1.1rem auto 0;
  max-width: 880px;
  color: #4b5563;
  font-size: 1.52rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .enterprise-intro-title {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .enterprise-intro-description {
    font-size: 1.05rem;
  }
}

.service-speed-block {
  padding: 3.25rem 1.5rem 3.5rem;
  direction: rtl;
}

.service-speed-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.service-speed-visual {
  position: relative;
}

.service-speed-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  min-height: 440px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.service-speed-sla {
  position: absolute;
  right: 2rem;
  bottom: -1.6rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 275px;
}

.service-speed-sla-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e9fdf4;
  color: #0ea874;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.service-speed-sla-title {
  font-size: 1.32rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.service-speed-sla-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.service-speed-content {
  padding: 2.3rem 2.2rem;
}

.service-speed-title {
  margin: 0 0 1.1rem;
  color: #101827;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.service-speed-description {
  margin: 0 0 1.4rem;
  color: #374151;
  font-size: 1.12rem;
  line-height: 1.8;
}

.service-speed-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-speed-list li {
  color: #1f2937;
  font-size: 1.03rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.service-speed-list i {
  color: #0ea874;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .service-speed-grid {
    grid-template-columns: 1fr;
  }

  .service-speed-content {
    order: 2;
  }

  .service-speed-visual {
    order: 1;
  }
}

@media (max-width: 640px) {
  .service-speed-block {
    padding: 2.25rem 1rem 2.5rem;
  }

  .service-speed-content {
    padding: 1.45rem 1.2rem;
  }

  .service-speed-description {
    font-size: 1rem;
  }

  .service-speed-image {
    min-height: 300px;
  }

  .service-speed-sla {
    left: 0.8rem;
    right: 0.8rem;
    min-width: 0;
    bottom: -1.2rem;
  }
}

.org-cta-block {
  position: relative;
  direction: rtl;
  min-height: 480px;
  padding: 4.2rem 1.25rem;
  background:  rgba(17, 24, 39, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-gradient{
  position: absolute;
  inset: 0;
  background-color: rgb(16 185 129 / 0.1);
  border-radius: 9999px;
  filter: blur(80px);
}

.org-cta-inner {
  max-width: 760px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.org-cta-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.org-cta-subtitle {
  margin: 1.3rem auto 0;
  max-width: 640px;
  color: #d1d5db;
  font-size: 1.35rem;
  line-height: 1.6;
}

.org-cta-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.org-cta-btn {
  min-width: 230px;
  padding: 0.95rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.org-cta-btn-primary {
  background: #12b886;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 184, 134, 0.35);
}

.org-cta-btn-primary:hover {
  background: #0fa475;
}

.org-cta-btn-secondary {
  background: rgba(17, 24, 39, 0.62);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.org-cta-btn-secondary:hover {
  background: rgba(31, 41, 55, 0.78);
}

@media (max-width: 768px) {
  .org-cta-block {
    min-height: 420px;
    padding: 3.1rem 1rem;
  }

  .org-cta-subtitle {
    font-size: 1.02rem;
  }

  .org-cta-actions {
    flex-direction: column;
  }

  .org-cta-btn {
    width: 100%;
    max-width: 340px;
  }
}

.hero-section {
  width: 100%;
  padding: 3rem 0;
  background: #ffffff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #cdfced;
    color: #10b981;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-text {
  font-weight: 700;
}

.badge-link {
  opacity: 0.9;
  cursor: pointer;
}

.hero-main-title {
  font-size: 2.8rem;
  color: #0b5fe8;
  line-height: 1.2;
  margin: 0;
}

.hero-description {
  font-size: 1.1rem;
  color: #1f2937;
  line-height: 1.7;
  margin: 0;
}

.hero-benefits {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #dfeffc;
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.benefits-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #0b5fe8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

.benefits-content {
  flex: 1;
}

.benefits-text {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.6;
  margin: 0;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
}

.overlay-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: right;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.card-icon-blue {
  background: #0b5fe8;
}

.card-icon-green {
  background: #10b981;
}

.card-title {
  font-size: 1.4rem;
  color: #111827;
  margin: 0 0 1rem 0;
}

.card-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

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

  .hero-image-wrapper {
    order: -1;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-benefits {
    flex-direction: column;
  }

  .benefits-icon {
    align-self: flex-start;
  }
}

/* Main Footer Styles */
.main-footer {
  background: #f5f6f7;
  color: #111827;
  padding: 2.4rem 0 1rem;
  border-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.footer-section ul{
    list-style: none;
}

.footer-section ul li{
    margin-bottom: 0.5rem;
    padding: 0;
}

.footer-section ul a{
    color: #4b5563;
    text-decoration: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.8;
}

.footer-section ul a:hover{
    color: #111827;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-company {
  max-width: 420px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: #10b981;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.22);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

.footer-social {
  display: none;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2d4a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  background: #2563eb;
  color: #ffffff;
}

.social-icon i {
  font-size: 0.9rem;
}

.footer-title {
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.8rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #111827;
}

.footer-nav .module-menu,
.footer-support .module-menu {
  display: block;
}

.footer-nav .module-menu .menu-list,
.footer-support .module-menu .menu-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .module-menu .menu-item,
.footer-support .module-menu .menu-item {
  display: block;
  padding: 0;
  margin: 0 0 0.5rem;
}

.footer-nav .module-menu .menu-item > a,
.footer-support .module-menu .menu-item > a {
  color: #4b5563;
  text-decoration: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 0;
  white-space: normal;
  display: inline;
}

.footer-nav .module-menu .menu-item > a:hover,
.footer-support .module-menu .menu-item > a:hover,
.footer-nav .module-menu .menu-item > a.router-link-active,
.footer-support .module-menu .menu-item > a.router-link-exact-active {
  color: #111827;
  background: transparent;
}

.footer-link-active {
  color: #60a5fa !important;
}

.footer-subscribe {
  display: none;
}

.footer-subscribe-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.footer-subscribe-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-subscribe-input {
  flex: 1;
  padding: 0.875rem 1rem;
  background-color: #FFFFFF;
  color: #1A202C;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  direction: rtl;
}

.footer-subscribe-input::placeholder {
  color: #9CA3AF;
}

.footer-subscribe-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.footer-subscribe-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: #3B82F6;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.footer-subscribe-button:hover {
  background-color: #2563EB;
  transform: translateY(-1px);
}

.footer-subscribe-button i {
  font-size: 1rem;
}

.footer-subscribe-tags {
  display: flex;
  gap: 0.5rem;
}

.footer-subscribe-tag {
  padding: 0.5rem;
  background-color: #374151;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-subscribe-tag:hover {
  background-color: #4B5563;
}

.footer-bottom {
  display: flex;
  align-items: center;
  border-top: 0;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-bottom a{
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover{
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: #111827;
}

.footer-bottom-left {
  display: none;
}

.accessibility-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d4a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.accessibility-link:hover {
  background: #2563eb;
  color: #ffffff;
}

.accessibility-link i {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .footer-company {
    max-width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-actions{
    flex-direction: column;
  }
    .form-row{
        grid-template-columns: 1fr !important;
    }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: right;
  }

  .footer-logo,.footer-social{
    justify-content: flex-start;
  }
  
  .footer-subscribe {
    max-width: 100%;
  }
  
  .footer-subscribe-form {
    flex-direction: column;
  }
  
  .footer-subscribe-button {
    width: 100%;
  }

  .footer-subscribe{
    max-width: 100%;
  }

  .footer-company {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    justify-content: center;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  direction: rtl;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(182deg, rgba(255, 255, 255, 0) 0%, rgba(248, 248, 248, 0.8) 30%, rgb(248, 248, 248) 100%);
}

.hero-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

/* Top Info Capsule */
.hero-info-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-capsule-icon {
  font-size: 0.9rem;
  color: #10b981;
}

.hero-capsule-text {
  white-space: nowrap;
}

/* Main Headings */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  line-height: 1.2;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #10b981;
}

/* Description Paragraph */
.hero-description {
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  padding: 0 1rem;
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  direction: rtl;
}

.hero-btn-primary {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.25);
}

.hero-btn-primary:hover {
  background: #0b1220;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.3);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.hero-btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.hero-btn i {
  font-size: 0.9rem;
}

/* Bottom Info Points */
.hero-info-points {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  direction: rtl;
}

.hero-info-icon {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-info-text {
  white-space: nowrap;
}

/* Laptop Display Section */
.hero-laptop-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 3.2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.automation-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  background: #f7f7f8;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.showcase-phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-header {
  background: #005248;
  color: #ffffff;
  border-radius: 22px 22px 0 0;
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-header-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-header-icon {
  color: #ffffff;
  font-size: 0.95rem;
}

.phone-header-title {
  flex: 1;
  text-align: right;
  line-height: 1.25;
}

.phone-chat {
  background: #d6d3d1;
  min-height: 250px;
  padding: 0.85rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.chat-bubble {
  max-width: 84%;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #1f2937;
}

.chat-bubble-in {
  background: #ffffff;
  align-self: flex-start;
}

.chat-bubble-out {
  background: #dcfce7;
  align-self: flex-end;
}

.phone-input {
  background: #e8eef2;
  border-radius: 0 0 22px 22px;
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
}

.phone-input-field {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: right;
  line-height: 1.3;
}

.phone-input-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  background: #005248;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0;
}

.phone-input-send i {
  font-size: 0.85rem;
}

.showcase-flow {
  background: #efeff0;
  border-radius: 14px;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  direction: rtl;
  align-items: flex-end;
}

.flow-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  align-self: baseline;
}

.flow-header-icon {
  color: #10b981;
}

.flow-step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.showcase-flow .flow-step:nth-of-type(2) {
  width: calc(100% - 18px);
}

.showcase-flow .flow-step:nth-of-type(3) {
  width: calc(100% - 70px);
}

.showcase-flow .flow-step:nth-of-type(4) {
  width: calc(100% - 120px);
}

.flow-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.flow-step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-icon {
  font-size: 1.35rem;
  color: #7c3aed;
}

.flow-step-label {
  color: #8b5cf6;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.flow-step-text {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 600;
}

.flow-step-success {
  border-color: #a7f3d0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.flow-step:nth-of-type(3) .flow-step-label{
  color: #2563eb;
}

.flow-step:nth-of-type(3) .flow-step-icon-wrap {
  background: #eaf1ff;
}

.flow-step:nth-of-type(3) .flow-step-icon {
  color: #2563eb;
}

.flow-step-success .flow-step-label {
  color: #10b981;
}

.flow-step-success .flow-step-icon-wrap {
  background: #dff7ec;
}

.flow-step-success .flow-step-icon {
  color: #059669;
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
  .automation-showcase {
    grid-template-columns: 230px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

}

@media (max-width: 768px) {
  #test.hero-section {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-info-capsule {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .hero-title-line {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-info-points {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-info-item {
    font-size: 0.9rem;
  }

  .hero-laptop-section {
    margin-top: 2rem;
  }

  .automation-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-phone {
    order: 2;
  }

  .showcase-flow {
    order: 1;
    align-items: stretch;
  }

  .showcase-flow .flow-step:nth-of-type(2),
  .showcase-flow .flow-step:nth-of-type(3),
  .showcase-flow .flow-step:nth-of-type(4) {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .hero-capsule-text {
    white-space: normal;
  }

  .automation-showcase {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .showcase-flow {
    padding: 0.75rem;
  }

  .flow-step-text {
    font-size: 0.88rem;
  }
}

/* Trusted-by strip (hero) — RTL: logos right→left Wix … Gong */
.hero-features-section.trusted-by-strip {
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0;
  direction: rtl;
  text-align: center;
  background: transparent;
}

.trusted-by-heading {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.5;
}

.trusted-by-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.trusted-by-logo {
  color: #334155;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.15rem;
  white-space: nowrap;
  opacity: 0.92;
}

.trusted-by-logo--wix,.trusted-by-logo--fiverr{
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.trusted-by-logo--wix strong,.trusted-by-logo--fiverr strong {
  font-weight: 700;
}

.trusted-by-logo--wix .trusted-by-logo-suffix {
  font-weight: 400;
}

.trusted-by-logo--monday {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.trusted-by-logo--fiverr {
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.03em;
}

.trusted-by-logo--payoneer {
  font-weight: 700;
  font-style: italic;
}

.trusted-by-logo--gong {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-draggable{
  cursor: move !important;
}
.landing-selected{
  cursor: text !important;
}

@media (max-width: 768px) {
  .hero-features-section.trusted-by-strip {
    margin-top: 2rem;
    padding: 0 1rem 1.5rem;
  }

  .trusted-by-heading {
    font-size: 0.875rem;
    margin-bottom: 1.1rem;
  }

  .trusted-by-logos {
    gap: 1.25rem 1.75rem;
  }

  .trusted-by-logo {
    font-size: 1rem;
  }

  .landing-editor-container{
    height: auto !important;
  }
  .editor-content,.editor-toolbar,.toolbar-left,.toolbar-right{
    flex-direction: column;
  }
  .editor-canvas{
    padding:1rem 0 !important;
  }
}

/* Automation infrastructure tabs (RTL) */
.module-automation-infra{
  background: #f4f5f7;
}
.automation-infra {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
  direction: rtl;
  text-align: right;
}

.automation-infra-title {
  margin: 0 0 2.25rem;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.automation-infra-title-line {
  display: block;
}

.automation-tabs-wrap {
  margin-bottom: 2.5rem;
}

.automation-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0;
}

.automation-tab {
  flex: 1 1 0;
  min-width: 140px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.6rem;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.automation-tab:hover {
  background: #e2e8f0;
}

.automation-tab.is-active {
  background: #ffffff;
  border-color: #00c07f;
  box-shadow: 0 4px 14px rgba(0, 192, 127, 0.12);
  color: #0f172a;
}

.automation-tab-icon-wrap {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #dbeafe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: background 0.2s, color 0.2s;
}

.automation-tab-icon-wrap.is-active {
  background: #00c07f;
  color: #ffffff;
}

.automation-tab:not(.is-active) .automation-tab-icon-wrap {
  background: #e2e8f0;
  color: #64748b;
}

.automation-tab-icon {
  font-size: 1rem;
}

.automation-tabs-rail {
  position: relative;
  height: 1px;
  background: #f5f5f6;
  border-radius: 1px;
  max-width: 800px;
  margin: 3rem auto;
}

.automation-tabs-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  transition: right 0.25s ease, width 0.2s ease;
}

.automation-panels {
  max-width: 1100px;
  margin: 0 auto;
}

.automation-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: center;
  direction: rtl;
}

.automation-panel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.automation-panel-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
}

.automation-panel-badge--green {
  background: #00c07f;
}

.automation-panel-badge--blue {
  background: #bfdbfe;
  color: #1e40af;
}

.automation-panel-badge--purple {
  background: #e9d5ff;
  color: #6b21a8;
}

.automation-panel-badge--amber {
  background: #fef08a;
  color: #854d0e;
}

.automation-panel-heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.automation-panel-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #64748b;
}

.automation-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.automation-panel-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.automation-panel-check {
  color: #00c07f;
  font-size: 1rem;
}

.automation-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.automation-panel-cta:hover {
  opacity: 0.85;
}

.automation-panel-cta--green {
  color: #00a36c;
}

.automation-panel-cta--blue {
  color: #2563eb;
}

.automation-panel-cta--purple {
  color: #7c3aed;
}

.automation-panel-cta--teal {
  color: #0d9488;
}

.automation-panel-visual {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-mock-device {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.automation-mock-dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.automation-mock-window {
  position: relative;
  background: #0f172a;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  overflow: hidden;
}

.automation-mock-win-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e2e8f0;
}

.automation-mock-win-title {
  flex: 1;
  text-align: right;
}

.automation-mock-win-gear {
  color: #94a3b8;
  font-size: 0.85rem;
}

.automation-mock-rows {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.automation-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #f1f5f9;
}

.automation-mock-row-arrow {
  color: #00c07f;
  font-size: 0.75rem;
}

.automation-qa-phone {
  width: 100%;
  max-width: 260px;
  background: #0f172a;
  border-radius: 28px;
  padding: 7px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}

.automation-qa-phone-inner {
  background: #d6d3d1;
  border-radius: 22px;
  overflow: hidden;
}

.automation-qa-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  background: #005248;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.automation-qa-header-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.automation-qa-chat {
  padding: 0.65rem 0.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.automation-qa-bubble {
  max-width: 88%;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  font-size: 0.7rem;
  line-height: 1.4;
}

.automation-qa-bubble--in {
  align-self: flex-start;
  background: #ffffff;
  color: #1e293b;
}

.automation-qa-bubble--user {
  align-self: flex-end;
  background: #bbf7d0;
  color: #14532d;
  font-weight: 600;
}

.automation-qa-bubble--err {
  align-self: flex-start;
  background: #fecaca;
  color: #991b1b;
  font-weight: 600;
}

.automation-int-grid {
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  direction: rtl;
}

.automation-int-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.35rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.automation-roi-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 1rem 1.1rem 0;
  overflow: hidden;
}

.automation-roi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.automation-roi-head-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
}

.automation-roi-pdf {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
}

.automation-roi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  direction: rtl;
}

.automation-roi-stat {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}

.automation-roi-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.automation-roi-stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.automation-roi-trend {
  color: #00c07f;
  font-size: 0.85rem;
}

.automation-roi-chart {
  margin: 0 -1.1rem;
  height: 100px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.06) 0%, transparent 100%);
}

.automation-roi-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

  .automation-panel-visual {
    order: 2;
    min-height: auto;
  }

  .automation-panel-copy {
    order: 1;
  }
}

@media (max-width: 768px) {
  .automation-infra {
    padding: 2.5rem 1rem 3rem;
  }

  .automation-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .automation-tab {
    max-width: none;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
  }

  .automation-tab-label {
    text-align: right;
  }

  .automation-roi-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .automation-tab {
    min-width: 0;
  }
}

/* Features Section Styles */
.features-section {
  background-color: #F7F8FA;
  padding: 60px 20px 80px;
  direction: rtl;
  text-align: right;
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}

.features-brand-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #F0F8FF;
  border: 1px solid #D1E3FF;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: 700;
  color: #2D48DA;
}

.features-brand-button:hover {
  background-color: #E6F2FF;
  border-color: #B8D4FF;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(45, 72, 218, 0.1);
}

.brand-star-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.brand-text {
  font-weight: 700;
  color: #2D48DA;
  direction: rtl;
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.features-title {
  font-size: 48px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.title-highlight {
  color: #3B82F6;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background-color: #3B82F6;
  opacity: 0.3;
  border-radius: 2px;
}

.features-subtitle {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.feature-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-grid .feature-icon{
  background-color: #EFF6FF;
  margin-bottom: 20px;
}

.feature-icon-wrapper i.feature-icon{
  height:auto;
  width:auto;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.features-grid .feature-title{
  color: #1E293B;
}

.feature-description {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

.feature-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.feature-badge {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.feature-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.features-cta {
  text-align: center;
  margin-top: 50px;
}

.features-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #fff;
  color: #1E293B;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.features-button:hover {
  background-color: #F8FAFC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 15px 60px;
  }

  .features-title {
    font-size: 36px;
  }

  .features-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-title {
    font-size: 20px;
  }

  .features-cta {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 15px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Process Section (How it Works) */
.process-section {
  padding: 5rem 2rem;
  background-color: #F8F9FA;
  direction: rtl;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #E0ECFB;
  color: #3B82F6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background-color 0.2s ease;
}

.process-pill:hover {
  background-color: #D0E2F9;
}

.process-pill-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.process-pill-text {
  color: #3B82F6;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.process-description {
  font-size: 1.125rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: right;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #E0ECFB;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  margin-right: 0;
  margin-left: auto;
}

.step-icon {
  width: 24px;
  height: 24px;
  color: #3B82F6;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #3B82F6;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.process-cta-button:hover {
  background-color: #2563EB;
}

.process-cta-button i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .process-section {
    padding: 3rem 1.5rem;
  }

  .process-title {
    font-size: 2rem;
  }

  .process-description {
    font-size: 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step-card {
    padding: 1.5rem;
  }
}

/* Integrations Section */
.integrations-section-wrapper {
  padding: 5rem 2rem;
  background-color: #F8FAFC;
  direction: rtl;
}

.integrations-content-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.integrations-cards-column {
  order: 2;
}

.integrations-grid-container {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.integration-card-item {
  background-color: #F5F7FA;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.integration-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.integration-card-left-icon-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background-color: #E5E7EB;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-card-left-icon {
  font-size: 0.875rem;
  color: #6B7280;
}

.integration-card-right-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background-color: #E0ECFB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 1.25rem;
}

.integration-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin: 3.5rem 0 0.5rem 0;
  line-height: 1.3;
}

.integration-card-subtitle {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

.integration-card-special {
  grid-column: 1 / -1;
  background-color: #0C101C;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 140px;
}

.integration-card-new-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #1F2937;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integration-card-special-share-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
}

.integration-card-special-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 3.5rem 0 0.5rem 0;
  line-height: 1.3;
}

.integration-card-special-subtitle {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin: 0;
  line-height: 1.5;
}

.integrations-info-column {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.integrations-info-tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #E8EDFF;
  color: #3B82F6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.integrations-info-tagline-pill:hover {
  background-color: #BFDBFE;
}

.integrations-info-tagline-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: #3B82F6;
}

.integrations-info-tagline-text {
  color: #3B82F6;
}

.integrations-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
  line-height: 1.2;
}

.integrations-info-description {
  font-size: 1.125rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

.integrations-info-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.integrations-info-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #F3F4F6;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.integrations-info-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.integrations-info-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #3B82F6;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.integrations-info-btn-primary:hover {
  background-color: #2563EB;
}

.integrations-info-btn-primary i {
  font-size: 1rem;
}

.integrations-info-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #E5E7EB;
  color: #374151;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.integrations-info-btn-secondary:hover {
  background-color: #D1D5DB;
}

.integrations-info-btn-secondary i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .integrations-content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .integrations-cards-column {
    order: 1;
  }

  .integrations-info-column {
    order: 2;
  }
}

@media (max-width: 768px) {
  .integrations-section-wrapper {
    padding: 3rem 1.5rem;
  }

  .integrations-grid-container {
    padding: 1.5rem;
  }

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

  .integrations-info-title {
    font-size: 2rem;
  }

  .integrations-info-description {
    font-size: 1rem;
  }

  .integrations-info-cta-buttons {
    flex-direction: column;
  }

  .integrations-info-btn-primary,
  .integrations-info-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Reviews Section (Customer Testimonials) */
.reviews-section-wrapper {
  padding: 5rem 2rem;
  background-color: #F5F7FA;
  direction: rtl;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.reviews-subtitle {
  font-size: 1.125rem;
  color: #4A5568;
  margin: 0;
  line-height: 1.6;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-stars i {
  color: #FBBF24;
  font-size: 1.125rem;
}

.review-quote {
  font-size: 1rem;
  color: #2D3748;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  text-align: right;
  font-style: normal;
  quotes: '"' '"' '"' '"';
}

.review-quote::before {
  content: open-quote;
  font-size: 2rem;
  color: #CBD5E0;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.25rem;
}

.review-quote::after {
  content: close-quote;
  font-size: 2rem;
  color: #CBD5E0;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.review-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 0.25rem;
}

.review-author-title {
  font-size: 0.875rem;
  color: #718096;
}

@media (max-width: 768px) {
  .reviews-section-wrapper {
    padding: 3rem 1.5rem;
  }

  .reviews-title {
    font-size: 2rem;
  }

  .reviews-subtitle {
    font-size: 1rem;
  }

  .reviews-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card-item {
    padding: 1.5rem;
  }
}

/* Tips Articles Module */
.tips-articles-wrapper {
  padding: 5rem 2rem;
  background-color: #FFFFFF;
  direction: rtl;
}

.tips-articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tips-articles-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.tips-blog-link {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #F3F4F6;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.tips-blog-link:hover {
  background-color: #E5E7EB;
}

.tips-blog-link i {
  font-size: 0.875rem;
}

.tips-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.tips-subtitle {
  font-size: 1.125rem;
  color: #4A5568;
  margin: 0;
  line-height: 1.6;
}

.tips-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tips-card-item {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tips-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tips-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tips-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #F3F4F6;
}

.tips-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.tips-card-content {
  padding: 1.5rem;
}

.tips-card-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2e6eea;
  margin-bottom: 0.75rem;
  text-align: right;
}

.tips-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  text-align: right;
}

.tips-card-description {
  font-size: 0.9375rem;
  color: #4A5568;
  line-height: 1.6;
  text-align: right;
  margin: 0;
}

.tips-card-description :deep(p) {
  margin: 0;
}

.tips-empty {
  text-align: center;
  padding: 3rem;
  color: #718096;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .tips-articles-wrapper {
    padding: 3rem 1.5rem;
  }

  .tips-blog-link {
    position: static;
    margin-bottom: 1.5rem;
    display: inline-flex;
  }

  .tips-title {
    font-size: 2rem;
  }

  .tips-subtitle {
    font-size: 1rem;
  }

  .tips-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tips-card-image {
    height: 180px;
  }
}

/* Signup CTA Section */
.signup-cta-wrapper {
  padding: 5rem 2rem;
  background-color: #1A202C;
  direction: rtl;
}

.signup-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.signup-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.signup-cta-description {
  font-size: 1.125rem;
  color: #E0E0E0;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.signup-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.signup-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.signup-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.signup-cta-btn-primary i {
  font-size: 1rem;
}

.signup-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #2D3748;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-cta-btn-secondary:hover {
  background-color: #374151;
  transform: translateY(-2px);
}

.signup-cta-disclaimer {
  font-size: 0.875rem;
  color: #A0AEC0;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .signup-cta-wrapper {
    padding: 3rem 1.5rem;
  }

  .signup-cta-title {
    font-size: 2rem;
  }

  .signup-cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .signup-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-cta-btn-primary,
  .signup-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Editor Showcase Section */
.editor-showcase-wrapper {
  direction: rtl;
}

.editor-showcase-intro {
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.editor-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3B82F6;
  margin-bottom: 1rem;
}

.editor-showcase-label-icon {
  font-size: 1rem;
  color: #3B82F6;
}

.editor-showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.editor-showcase-description {
  font-size: 1.125rem;
  color: #4A5568;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.editor-showcase-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background-color: #1A202C;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  margin-top: -2rem;
  position: relative;
}

.editor-showcase-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editor-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.editor-showcase-badge-icon {
  font-size: 1rem;
  color: #FFFFFF;
}

.editor-showcase-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.editor-showcase-heading-line {
  display: block;
}

.editor-showcase-text {
  font-size: 1.125rem;
  color: #E0E0E0;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.editor-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editor-showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.editor-showcase-feature-icon {
  font-size: 1.25rem;
  color: #10B981;
  flex-shrink: 0;
}

.editor-showcase-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.editor-showcase-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: #3B82F6;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.editor-showcase-btn-primary:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}

.editor-showcase-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.editor-showcase-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

.editor-showcase-btn-secondary i {
  font-size: 1rem;
}

.editor-showcase-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.editor-showcase-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.7) 0%, rgba(26, 32, 44, 0.5) 100%);
  z-index: 1;
}

/* Скрываем изображения, которые могут быть обернуты в <p> тег редактором */
.editor-showcase-image :deep(p),
.editor-showcase-image :deep(img) {
  display: none;
}

@media (max-width: 1024px) {
  .editor-showcase-main {
    grid-template-columns: 1fr;
  }

  .editor-showcase-image {
    min-height: 400px;
    order: -1;
  }

  .editor-showcase-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .editor-showcase-intro {
    padding: 3rem 1.5rem 2rem;
  }

  .editor-showcase-title {
    font-size: 2rem;
  }

  .editor-showcase-description {
    font-size: 1rem;
  }

  .editor-showcase-heading {
    font-size: 1.75rem;
  }

  .editor-showcase-text {
    font-size: 1rem;
  }

  .editor-showcase-content {
    padding: 1.5rem;
  }

  .editor-showcase-actions {
    flex-direction: column;
  }

  .editor-showcase-btn-primary,
  .editor-showcase-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .editor-showcase-image {
    min-height: 300px;
  }
}

/* Platform Capabilities Grid Section */
.platform-capabilities-wrapper {
  padding: 5rem 2rem;
  background-color: #FFFFFF;
  direction: rtl;
}

.platform-capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
}

.platform-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.platform-capability-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: right;
}

.platform-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.platform-capability-icon {
  width: 56px;
  height: 56px;
  background-color: #E0ECFB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.platform-capability-icon i {
  font-size: 1.5rem;
  color: #3B82F6;
}

.platform-capability-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.platform-capability-description {
  font-size: 1rem;
  color: #4A5568;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .platform-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .platform-capabilities-wrapper {
    padding: 3rem 0;
  }

  .platform-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-capability-card {
    padding: 1.5rem;
  }
}

/* Feature Request CTA Section */
.feature-request-wrapper {
  padding: 5rem 2rem;
  direction: rtl;
}

.feature-request-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.feature-request-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.feature-request-description {
  font-size: 1.125rem;
  color: #5F6C7B;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-request-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-request-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background-color: #3B82F6;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.feature-request-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.feature-request-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-request-btn-secondary:hover {
  border-color: #9CA3AF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #menu a, .module-menu a{
    color: #1f2937;
  }
  #menu a, .module-menu a.router-link-exact-active{
    color: #10b981;
  }
  .feature-request-wrapper {
    padding: 3rem 0;
  }

  .feature-request-title {
    font-size: 2rem;
  }

  .feature-request-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .feature-request-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-request-btn-primary,
  .feature-request-btn-secondary {
    width: 100%;
  }
}

/* Marketing Hero Section */
.marketing-hero-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #f9f9f9;
  position: relative;
  direction: rtl;
  overflow: hidden;
}



.marketing-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.marketing-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.marketing-hero-accent {
  color: #2e6eea;
}

.marketing-hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #555;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  text-align: center;
}

.marketing-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.marketing-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2e6eea 0%, #2e6eea 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(46, 110, 234, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  direction: rtl;
}

.marketing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 110, 234, 0.4);
}

.marketing-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #2e6eea;
  border: 1px solid #2e6eea;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  direction: rtl;
}

.marketing-btn-secondary:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .marketing-hero-wrapper {
    padding: 3rem 1.5rem;
  }

  .marketing-hero-container {
    gap: 1.5rem;
  }

  .marketing-hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .marketing-hero-description {
    font-size: 1rem;
  }

  .marketing-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .marketing-btn-primary,
  .marketing-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

#menu-item-3 .main-content .container,#menu-item-6 .main-content .container,#menu-item-13 .main-content .container,#menu-item-14 .main-content .container{
  max-width: none;
}

.user-component-content{
  background: #f8fafc;
  z-index: 11;
}

.user-component-content .container{
  max-width: 100%;
}

/* Creation Features Section */
.creation-features-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.creation-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.creation-features-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  text-align: center;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.creation-features-underline {
  width: 80px;
  height: 4px;
  background: #2e6eea;
  margin: 0 auto 3rem;
  border-radius: 2px;
}

.creation-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.creation-feature-card {
  background: #F8F9FA;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: right;
}

.creation-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.creation-feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-right: 0;
  margin-left: auto;
}

.creation-feature-icon-purple {
  background: #E8EDFF;
}

.creation-feature-icon-purple i {
  font-size: 1.5rem;
  color: #2e6eea;
}

.creation-feature-icon-green {
  background: #E8F8EB;
}

.creation-feature-icon-green i {
  font-size: 1.5rem;
  color: #10B981;
}

.creation-feature-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.creation-feature-card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.creation-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.creation-feature-list li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  padding-right: 1.5rem;
  position: relative;
}

.creation-feature-list li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: #2e6eea;
  font-weight: 700;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .creation-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .creation-features-wrapper {
    padding: 3rem 1.5rem;
  }

  .creation-features-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .creation-features-underline {
    margin-bottom: 2rem;
  }

  .creation-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .creation-feature-card {
    padding: 1.5rem;
  }

  .creation-feature-card-title {
    font-size: 1.25rem;
  }

  .creation-feature-card-description {
    font-size: 0.95rem;
  }
}

/* Conversion System Section */
.conversion-system-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0D1223 0%, #1A1F35 100%);
  direction: rtl;
}

.conversion-system-container {
  max-width: 1400px;
  margin: 0 auto;
}

.conversion-system-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.conversion-system-text-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conversion-system-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.conversion-system-heading-line {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2e6eea;
  line-height: 1.2;
}

.conversion-system-intro {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.conversion-system-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.conversion-system-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.conversion-system-feature-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #2e6eea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conversion-system-feature-icon-box i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.conversion-system-feature-text {
  flex: 1;
}

.conversion-system-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.conversion-system-feature-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.conversion-system-visual-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.conversion-system-browser-window {
  width: 100%;
  max-width: 600px;
  background: #1F2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.conversion-system-browser-header {
  background: #0F1419;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conversion-system-browser-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.conversion-system-browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.conversion-system-dot-red {
  background: #D54B45;
}

.conversion-system-dot-yellow {
  background: #C78D1F;
}

.conversion-system-dot-green {
  background: #27A783;
}

.conversion-system-browser-nav {
  flex: 1;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  margin: 0 1rem;
}

.conversion-system-browser-body {
  padding: 1.5rem;
  background: #1F2937;
}

.conversion-system-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.conversion-system-metric-card {
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.conversion-system-metric-card-blue {
  background: #2D3748;
}

.conversion-system-metric-card-purple {
  background: #2e6eea;
}

.conversion-system-metric-card-large {
  grid-column: 1 / -1;
  background: #2D3748;
  min-height: 180px;
}

.conversion-system-metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.conversion-system-metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.conversion-system-metric-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .conversion-system-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .conversion-system-visual-section {
    order: -1;
  }
}

@media (max-width: 768px) {
  .conversion-system-wrapper {
    padding: 3rem 1.5rem;
  }

  .conversion-system-heading-line {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .conversion-system-intro {
    font-size: 1rem;
  }

  .conversion-system-features {
    gap: 1.25rem;
  }

  .conversion-system-feature-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .conversion-system-feature-icon-box i {
    font-size: 1rem;
  }

  .conversion-system-feature-title {
    font-size: 1rem;
  }

  .conversion-system-feature-desc {
    font-size: 0.9rem;
  }

  .conversion-system-browser-body {
    padding: 1rem;
  }

  .conversion-system-metric-card {
    padding: 1.25rem;
    min-height: 100px;
  }

  .conversion-system-metric-card-large {
    min-height: 150px;
  }

  .conversion-system-metric-value {
    font-size: 2rem;
  }
}

/* Brand Agency Card Section */
.brand-agency-card-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.brand-agency-card-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brand-agency-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #FFFFFF;
}

.brand-agency-card-purple {
  background: #2e6eea;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.brand-agency-card-purple-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.brand-agency-card-purple-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  max-width: 400px;
}

.brand-agency-card-purple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #2e6eea;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-agency-card-purple-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-agency-card-white {
  background: #FFFFFF;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.brand-agency-card-white-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
  text-align: right;
}

.brand-agency-card-white-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #555;
  margin: 0;
  line-height: 1.7;
  text-align: right;
}

.brand-agency-card-white-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.brand-agency-card-white-bottom-text {
  flex: 1;
  text-align: right;
}

.brand-agency-card-white-bottom-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.brand-agency-card-white-bottom-desc {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.brand-agency-card-white-bottom-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #E8EDFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-agency-icon-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e6eea;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .brand-agency-card {
    grid-template-columns: 1fr;
  }

  .brand-agency-card-purple {
    padding: 2.5rem 2rem;
  }

  .brand-agency-card-white {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .brand-agency-card-wrapper {
    padding: 3rem 1.5rem;
  }

  .brand-agency-card-purple {
    padding: 2rem 1.5rem;
  }

  .brand-agency-card-white {
    padding: 2rem 1.5rem;
  }

  .brand-agency-card-white-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .brand-agency-card-white-bottom-icon {
    align-self: flex-end;
  }
}

/* Selling CTA Section */
.selling-cta-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.selling-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.selling-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
}

.selling-cta-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #555;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.selling-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #2e6eea 0%, #2e6eea 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 110, 234, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}

.selling-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46, 110, 234, 0.4);
}

.selling-cta-disclaimer {
  font-size: 0.875rem;
  color: #999;
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .selling-cta-wrapper {
    padding: 3rem 1.5rem;
  }

  .selling-cta-container {
    gap: 1.25rem;
  }

  .selling-cta-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .selling-cta-description {
    font-size: 1rem;
  }

  .selling-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
  }

  .selling-cta-disclaimer {
    font-size: 0.8rem;
  }
}

/* Story Intro Section */
.story-intro-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(224, 231, 255, 0.3) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(224, 231, 255, 0.3) 100%);
  direction: rtl;
}

.story-intro-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.story-intro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: #E8EDFF;
  color: #0c0093;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.story-intro-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.2;
}

.story-intro-heading-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #2D2F3B;
}

.story-intro-heading-accent {
  color: #2e6eea;
}

.story-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.story-intro-paragraph {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #5F6368;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .story-intro-wrapper {
    padding: 3rem 1.5rem;
  }

  .story-intro-container {
    gap: 1.5rem;
  }

  .story-intro-badge {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
  }

  .story-intro-heading-line {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .story-intro-paragraph {
    font-size: 1rem;
  }

  .story-intro-text {
    gap: 0.875rem;
  }
}

/* Why Mission Section */
.why-mission-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.why-mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-mission-text-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-mission-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
  text-align: right;
}

.why-mission-paragraph {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #222;
  line-height: 1.7;
  margin: 0;
  text-align: right;
  font-weight: 400;
}

.why-mission-highlight {
  font-weight: 700;
  color: #222;
}

.why-mission-mission {
  font-weight: 600;
}

.why-mission-stats-section {
  display: flex;
  justify-content: center;
  align-items: start;
}

.why-mission-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
}

.why-mission-stat-card {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  text-align: center;
}

.why-mission-stat-dark {
  background: #201E35;
}

.why-mission-stat-purple {
  background: #2e6eea;
}

.why-mission-stat-bright {
  background: #2e6eea;
}

.why-mission-stat-light {
  background: #F8F8F8;
}

.why-mission-stat-value {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.why-mission-stat-dark .why-mission-stat-value,
.why-mission-stat-purple .why-mission-stat-value,
.why-mission-stat-bright .why-mission-stat-value {
  color: #FFFFFF;
}

.why-mission-stat-light .why-mission-stat-value {
  color: #222;
}

.why-mission-stat-label {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 400;
}

.why-mission-stat-dark .why-mission-stat-label,
.why-mission-stat-purple .why-mission-stat-label,
.why-mission-stat-bright .why-mission-stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.why-mission-stat-light .why-mission-stat-label {
  color: #555;
}

@media (max-width: 1024px) {
  .why-mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-mission-stats-section {
    order: -1;
  }
}

@media (max-width: 768px) {
  .why-mission-wrapper {
    padding: 3rem 1.5rem;
  }

  .why-mission-content {
    gap: 2.5rem;
  }

  .why-mission-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .why-mission-paragraph {
    font-size: 1rem;
  }

  .why-mission-stats-grid {
    gap: 1.25rem;
  }

  .why-mission-stat-card {
    padding: 1.5rem 1.25rem;
    min-height: 120px;
  }

  .why-mission-stat-value {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .why-mission-stat-label {
    font-size: 0.9rem;
  }
}

/* Values Principles Section */
.values-principles-wrapper {
  width: 100%;
  padding: 5rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.values-principles-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.values-principles-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.values-principles-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #666;
  margin: 0 0 3rem 0;
  line-height: 1.6;
}

.values-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.values-principles-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-principles-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.values-principles-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.values-principles-icon-blue {
  background: #E8EDFF;
}

.values-principles-icon-blue i {
  font-size: 1.75rem;
  color: #3B82F6;
}

.values-principles-icon-green {
  background: #D1FAE5;
}

.values-principles-icon-green i {
  font-size: 1.75rem;
  color: #10B981;
}

.values-principles-icon-purple {
  background: #E8EDFF;
}

.values-principles-icon-purple i {
  font-size: 1.75rem;
  color: #2e6eea;
}

.values-principles-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.values-principles-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .values-principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .values-principles-wrapper {
    padding: 3rem 1.5rem;
  }

  .values-principles-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .values-principles-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .values-principles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-principles-card {
    padding: 1.5rem;
  }

  .values-principles-card-title {
    font-size: 1.25rem;
  }

  .values-principles-card-text {
    font-size: 0.95rem;
  }
}

/* Build Together Banner Section */
.build-together-banner {
  width: 100%;
  padding: 5rem 2rem;
  background: #2e6eea;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 40px
    );
  border-radius: 24px;
  margin: 2rem auto;
  max-width: 1400px;
  direction: rtl;
}

.build-together-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.build-together-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.build-together-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.7;
  max-width: 700px;
}

.build-together-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.build-together-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #2e6eea;
  border: none;
  border-radius: 9999px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.build-together-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.build-together-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #2e6eea;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 9999px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(46, 110, 234, 0.3);
}

.build-together-btn-secondary:hover {
  background: #2e6eea;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 110, 234, 0.4);
}

@media (max-width: 768px) {
  .build-together-banner {
    padding: 3rem 1.5rem;
    border-radius: 20px;
    margin: 1.5rem auto;
  }

  .build-together-container {
    gap: 1.25rem;
  }

  .build-together-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .build-together-description {
    font-size: 1rem;
  }

  .build-together-actions {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .build-together-btn-primary,
  .build-together-btn-secondary {
    width: 100%;
    font-size: 1rem;
  }
}

/* Pricing Plans Section */
.pricing-plans-page {
  padding: 2.5rem 1.25rem 3.5rem;
  max-width: 1260px;
  margin: 0 auto;
  direction: rtl;
  border-radius: 0;
}

.pricing-plans-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-plans-main-title {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.pricing-plans-title-dark {
  color: #222;
}

.pricing-plans-title-purple {
  color: #2e6eea;
}

.pricing-plans-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  color: #5f6977;
  margin: 0;
  line-height: 1.55;
  max-width: 860px;
  margin-inline: auto;
  font-weight: 500;
}

.pricing-plans-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  padding: 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pricing-plans-segment {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.pricing-plans-segment:hover {
  background: #f8fafc;
}

.pricing-plans-segment-active {
  background: #f3f4f6;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.pricing-plans-loading,
.pricing-plans-empty {
  text-align: center;
  padding: 3rem;
  color: #64748b;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  align-items: stretch;
}

.pricing-plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 1.35rem 1.45rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 640px;
}

.pricing-plan-card:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.pricing-plan-card-popular {
  border: 0;
  background: #101215;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 18, 21, 0.28);
  transform: translateY(-14px);
  z-index: 2;
}

.pricing-plan-trial-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F3F4F6;
  color: #555;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-plan-popular-badge {
  position: absolute;
  top: -22px;
  right: 50%;
  transform: translateX(50%);
  background-color: #10b981;
  color: #FFFFFF;
  padding: 0.48rem 1.1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.pricing-plan-card-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #667085;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-plan-card-popular .pricing-plan-card-eyebrow {
  color: #34d399;
}

.pricing-plan-card-title {
  font-size: 2.05rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.2rem 0;
  text-align: center;
  line-height: 1.12;
}

.pricing-plan-card-tagline {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1.15rem 0;
  text-align: center;
  font-weight: 500;
}

.pricing-plan-card-price {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-plan-price-amount {
  display: block;
  font-size: 3.1rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.pricing-plan-price-period {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #6b7280;
}

.pricing-plan-card-popular .pricing-plan-price-amount {
  color: #ffffff;
}

.pricing-plan-card-popular .pricing-plan-card-title,
.pricing-plan-card-popular .pricing-plan-card-tagline,
.pricing-plan-card-popular .pricing-plan-price-period {
  color: #ffffff;
}

.pricing-plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem 0;
  flex: 1;
}

.pricing-plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  text-align: right;
}

.pricing-plan-feature-icon-blue {
  color: #3B82F6;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-plan-feature-icon-green {
  color: #10B981;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-plan-feature-icon-purple {
  color: #8b5cf6;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-plan-feature-item span {
  color: #374151;
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 500;
}

.pricing-plan-card-popular .pricing-plan-feature-item span {
  color: #e5e7eb;
}

.pricing-plan-card-popular .pricing-plan-feature-icon-green,
.pricing-plan-card-popular .pricing-plan-feature-icon-purple,
.pricing-plan-card-popular .pricing-plan-feature-icon-blue {
  color: #34d399;
}

.pricing-plan-card-button {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid #e5e7eb;
  background-color: #f1f5f9;
  color: #111827;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-plan-card-button:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-plan-card-button-primary {
  background-color: #10b981;
  color: #FFFFFF;
  border: 0;
}

.pricing-plan-card-button-primary:hover {
  background-color: #0ea371;
}

.pricing-plan-card-popular .pricing-plan-card-button {
  background: #10b981;
  color: #fff;
  border: 0;
}

.pricing-plan-card-pilot .pricing-plan-price-amount,
.pricing-plan-card-enterprise .pricing-plan-price-amount {
  font-size: 3rem;
}

.pricing-plan-card-enterprise .pricing-plan-price-period,
.pricing-plan-card-enterprise .pricing-plan-card-tagline {
  color: #7a828f;
}

@media (max-width: 1024px) {
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-plan-card {
    min-height: auto;
  }

  .pricing-plan-card-popular {
    transform: none;
  }

  .pricing-plan-popular-badge {
    top: 0.9rem;
  }
}

@media (max-width: 768px) {
  .pricing-plans-page {
    padding: 2.2rem 1rem;
  }

  .pricing-plans-main-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .pricing-plans-subtitle {
    font-size: 1rem;
  }

  .pricing-plans-toggle-wrapper {
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    gap: 0.4rem;
    padding: 0.3rem;
  }

  .pricing-plans-segment {
    flex: 1 1 auto;
    white-space: normal;
    text-align: center;
    font-size: 0.88rem;
    padding: 0.65rem 0.7rem;
  }

  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-plan-card {
    padding: 1.25rem 1rem;
  }

  .pricing-plan-price-amount {
    font-size: 2.3rem;
  }

  .pricing-plan-card-eyebrow {
    font-size: 0.9rem;
  }

  .pricing-plan-price-period {
    font-size: 0.95rem;
  }
}

/* Contact page */
.contact-component {
  padding: 2.5rem 1rem 3rem;
  direction: rtl;
  background: #f3f4f6;
}

.contact-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.contact-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.contact-title {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.06;
  font-weight: 700;
}

.contact-subtitle {
  margin: 1.1rem auto 0;
  max-width: 900px;
  color: #4b5563;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 2.2rem;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-point {
  display: grid;
  grid-template-columns: 70px auto;
  gap: 1rem;
  align-items: start;
}

.contact-point-copy h3 {
  margin: 0;
  color: #111827;
  line-height: 1.25;
  font-weight: 700;
}

.contact-point-copy a,
.contact-point-copy strong {
  display: block;
  margin-top: 0.25rem;
  color: #1f2937;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}

.contact-point-copy p {
  margin: 0.35rem 0 0;
  color: #6b7280;
  line-height: 1.55;
  font-weight: 500;
}

.contact-point-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 1px solid transparent;
}

.contact-point-icon-mail {
  color: #1e9a77;
  background: #eaf8f2;
  border-color: #d7efe6;
}

.contact-point-icon-phone {
  color: #4f7bdd;
  background: #e9f0ff;
  border-color: #d7e4fd;
}

.contact-point-icon-map {
  color: #8b5cf6;
  background: #f2eefe;
  border-color: #e7dcff;
}

.contact-form-section {
  background: #fff;
  border: 1px solid #eceff2;
  border-radius: 34px;
  padding: 2rem 1.9rem 1.7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-component .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-component .form-group label {
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-component .form-group input,
.contact-component .form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f2f3f5;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.contact-component .form-group input::placeholder,
.contact-component .form-group textarea::placeholder {
  color: #9ca3af;
}

.contact-component .form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-component .form-group input:focus,
.contact-component .form-group textarea:focus {
  outline: none;
  border-color: #cfd6de;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.04);
}

.contact-component .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #0f1115;
  color: #fff;
  border: none;
  padding: 1rem 1.35rem;
  border-radius: 14px;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  margin-top: 0.35rem;
  width: 100%;
}

.contact-component .submit-btn:hover:not(:disabled) {
  background: #07080c;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 17, 21, 0.18);
}

.contact-component .submit-btn:disabled {
  opacity: 0.85;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-component #contact-form.is-hidden {
  display: none !important;
}

.contact-component .success-message {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.contact-component .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #10B981;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.contact-component .success-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 1rem 0;
}

.contact-component .success-text {
  font-size: 1.125rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (max-width: 768px) {
  .contact-component {
    padding: 1.6rem 0.65rem 2rem;
  }

  .contact-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .contact-point-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .contact-form-section {
    border-radius: 24px;
    padding: 1.25rem 1rem;
  }
}

/* Feature Comparison Table */
.feature-comparison-wrapper {
  width: 100%;
  padding: 4rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.feature-comparison-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #222;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.2;
}

.feature-comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

.feature-comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: #F8F9FA;
  border-bottom: 2px solid #E2E8F0;
}

.feature-comparison-header-cell {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  text-align: right;
  border-left: 1px solid #E2E8F0;
}

.feature-comparison-header-cell:first-child {
  border-left: none;
}

.feature-comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #E2E8F0;
  transition: background-color 0.2s ease;
}

.feature-comparison-row:hover {
  background-color: #F8F9FA;
}

.feature-comparison-row:last-child {
  border-bottom: none;
}

.feature-comparison-cell {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: #222;
  text-align: right;
  display: flex;
  align-items: center;
  border-left: 1px solid #E2E8F0;
  min-height: 60px;
}

.feature-comparison-cell:first-child {
  border-left: none;
}

.feature-comparison-feature-col {
  font-weight: 500;
}

.feature-comparison-check {
  color: #10B981;
  font-size: 1.125rem;
}

.feature-comparison-dash {
  color: #999;
  font-size: 1.125rem;
}

@media (max-width: 1024px) {
  .feature-comparison-header,
  .feature-comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .feature-comparison-wrapper {
    padding: 3rem 1.5rem;
  }

  .feature-comparison-title {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .feature-comparison-table {
    overflow-x: auto;
  }

  .feature-comparison-header,
  .feature-comparison-row {
    grid-template-columns: 200px 120px 120px 120px;
    min-width: 560px;
  }

  .feature-comparison-header-cell,
  .feature-comparison-cell {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* Subscription FAQ Section */
.subscription-faq-wrapper {
  width: 100%;
  padding: 4rem 2rem;
  background: #FFFFFF;
  direction: rtl;
}

.subscription-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.subscription-faq-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #222;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.2;
}

.subscription-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.subscription-faq-item {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.subscription-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscription-faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  text-align: right;
}

.subscription-faq-answer {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 768px) {
  .hero-section{
    padding-top: 3rem;
  }
  .subscription-faq-wrapper {
    padding: 3rem 1.5rem;
  }

  .subscription-faq-title {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .subscription-faq-item {
    padding: 1.5rem;
  }

  .subscription-faq-question {
    font-size: 1rem;
  }

  .subscription-faq-answer {
    font-size: 0.95rem;
  }
}