/*
 * Не задаём max-width:100% на * — иначе любые full-bleed (100vw + margin) не выходят за .container,
 * остаются «белые полосы» по бокам. Ограничение — только у типичных встраиваемых блоков.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  background: #f8fafc;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: clip;
}

img,
video,
canvas,
svg,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style-position: inside;
}
.terms-content h3,.terms-content h3{
    display: none;
}
.template {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  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: #0a192f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.main-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem clamp(16px, 4vw, 32px);
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

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

.brand-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--brand-accent, #ff6b00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.35);
  padding: 0px;
}

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

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

.brand-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.2;
}

.brand-subtitle {
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(239, 237, 237, 0.8);
  white-space: nowrap;
  line-height: 1.2;
}

#menu {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Top navigation links (desktop base) */
#menu a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
}

#menu a:hover {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

#menu a.router-link-exact-active {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

.desktop-menu {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.desktop-menu a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
}

.desktop-menu a:hover {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

.desktop-menu a.router-link-exact-active {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

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

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

.burger-menu-btn:hover .burger-line {
  background: rgba(255, 255, 255, 0.8);
}

.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;
  height: 100dvh;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 998;
  pointer-events: none;
}

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

/* פאנל מובייל — נפתח מתחת לשורת הלוגו/בורגר, לא מעליה */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #051124;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1001;
  direction: rtl;
}

.mobile-menu.open {
  max-height: min(85vh, 720px);
  opacity: 1;
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.mobile-menu:not(.open) {
  pointer-events: none;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.75rem clamp(16px, 4vw, 24px) calc(1rem + env(safe-area-inset-bottom, 0px));
  min-height: 0;
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.4rem 0 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.mobile-menu-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 4px;
  background: var(--brand-accent, #ff6b00);
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.mobile-menu-footer-text {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease, border-color 0.15s ease, color 0.15s ease;
  border: none;
}

.mobile-menu-btn--primary {
  background: linear-gradient(180deg, #ff6b00, #e85d00);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.42);
}

.mobile-menu-btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5);
  transform: translateY(-1px);
}

.mobile-menu-btn--primary:active {
  transform: translateY(0);
}

.mobile-menu-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: none;
}

.mobile-menu-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

/* ניווט בתוך הפאנל — רשימה נקייה, טקסט לבן על כהה */
.mobile-menu .module-menu {
  flex-direction: column;
  align-items: stretch;
}

.mobile-menu .module-menu .menu-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .module-menu .menu-item > a {
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 0.4rem !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transform: none !important;
  border-right: none !important;
  transition: color 0.15s ease, background 0.15s ease !important;
}

.mobile-menu .module-menu .menu-item > a:hover {
  color: #ff6b00 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
}

.mobile-menu .module-menu .menu-item > a.router-link-active,
.mobile-menu .module-menu .menu-item > a.router-link-exact-active {
  color: #ff6b00 !important;
  background: transparent !important;
  border: none !important;
}

.mobile-menu .module-menu .submenu {
  width: 100%;
  padding-right: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu .module-menu .submenu-item > a {
  display: flex !important;
  width: 100%;
  padding: 0.55rem 0.8rem !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;
}

.mobile-menu .module-menu .submenu-item > a:hover,
.mobile-menu .module-menu .submenu-item > a.router-link-active,
.mobile-menu .module-menu .submenu-item > a.router-link-exact-active {
  color: #ff6b00 !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

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

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

#menu a,.module-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
  border-radius: 12px;
  display: inline-block;
}

#menu a:hover,
.module-menu a:hover {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

#menu a.router-link-exact-active,
.module-menu a.router-link-exact-active {
  color: #ff6b00;
  background-color: transparent;
  transform: none;
}

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

:deep(.module-menu .menu-list) {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  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.5rem 1.25rem;
  border-radius: 20px;
  transition: all 0.15s ease;
  display: inline-block;
}

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

: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: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: #ff6b00; 
  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, background 0.2s ease;
  border: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ba5c14, #dc6916); 
  cursor: pointer;
}

.cta-button:active {
  transform: translateY(1px); 
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
}

.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: linear-gradient(135deg, #0b5fe8, #0a4fc9);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(232, 118, 11, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(232, 136, 11, 0.45);
}

.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) {
  /* תפריט פתוח: nav מעל overlay (998) כדי שההדר יישאר גלוי */
  .main-nav.main-nav--mobile-menu-open {
    z-index: 1002;
  }

    .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%;
}

.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: rgb(15 23 42);
  color: #ffffff;
  padding: 3rem 0 1rem;
  border-top: 1px solid #8b9dc3;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.3rem;
  margin-bottom: 2.5rem;
}

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

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

.footer-section ul a{
    color: #ffffff;
    text-decoration: none;
}

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

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

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-accent, #f97316);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

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

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 1.05rem 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.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-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.9rem 0;
}

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

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

.footer-subscribe {
  max-width: 350px;
}

.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;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid #2d4a6b;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.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.5rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.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: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1rem;
    align-items: start;
  }

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

  .footer-nav,
  .footer-support {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
    padding-inline-end: 0.65rem;
  }
}

@media (max-width: 768px) {
  .hero-actions{
    flex-direction: column;
  }
    .form-row{
        grid-template-columns: 1fr !important;
    }
  .footer-logo,
  .footer-social {
    justify-content: center;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  /* Footer: бренд сверху, три колонки ссылок в ряд (RTL) */
  .main-footer {
    padding: 2.25rem 0 1.25rem;
  }

  .main-footer .container {
    padding-left: clamp(12px, 4vw, 20px);
    padding-right: clamp(12px, 4vw, 20px);
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 0.65rem;
    margin-bottom: 1.75rem;
    text-align: inherit;
    align-items: start;
  }

  .footer-company {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav,
  .footer-support,
  .footer-company-links {
    text-align: right;
    min-width: 0;
  }

  .footer-nav,
  .footer-support {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
    padding-inline-end: 0.5rem;
  }

  .footer-title {
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 0.55rem 0;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.25;
    opacity: 0.95;
  }

  .footer-links {
    gap: 0.38rem;
  }

  .footer-links a {
    font-size: 0.72rem;
    line-height: 1.4;
    display: inline-block;
    padding: 0.15rem 0;
  }

  .footer-description {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 0.9rem;
  }

  .logo-text {
    font-size: 1.35rem;
  }
}

@media (max-width: 380px) {
  .footer-content {
    gap: 1rem 0.45rem;
  }

  .footer-title {
    font-size: 0.72rem;
  }

  .footer-links a {
    font-size: 0.68rem;
  }
}

/* Hero Section Styles */
.hero-section {
  margin-top: -76px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  background: #0D1223;
  background-image: 
    linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(59, 130, 246, 0.03) 0px,
      rgba(59, 130, 246, 0.03) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.03) 0px,
      rgba(59, 130, 246, 0.03) 1px,
      transparent 1px,
      transparent 40px
    );
  direction: rtl;
  text-align: center;
  overflow: hidden;
}

@keyframes glowAdvanced {
  0% {
    opacity: 0.65;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.12) translate(20px, 30px);
  }
  100% {
    opacity: 0.65;
    transform: scale(1) translate(0, 0);
  }
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(55px);
  animation: glowAdvanced 10s ease-in-out infinite;
}

/* Orange */
.hero-section::before {
  top: -200px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle,
    rgba(249, 115, 22, 0.18) 0%,
    rgba(249, 115, 22, 0.10) 35%,
    rgba(249, 115, 22, 0.04) 55%,
    rgba(249, 115, 22, 0) 85%
  );
  animation-delay: 0s;
}

/* Blue */
.hero-section::after {
  right: -220px;
  bottom: -240px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle,
    rgba(96, 165, 250, 0.20) 0%,
    rgba(96, 165, 250, 0.10) 38%,
    rgba(96, 165, 250, 0.04) 58%,
    rgba(96, 165, 250, 0) 85%
  );
  animation-delay: 5s;
}

.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: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-capsule-icon {
  font-size: 1rem;
  color: #ffffff;
}

.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, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #60A5FA;
}

/* Description Paragraph */
.hero-description {
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  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: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  direction: rtl;
}

.hero-btn-primary {
  background: #3B82F6;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.hero-btn-primary:hover {
  background: #2563EB;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.5);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(209, 213, 219, 0.8);
}

.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: 1400px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.browser-frame {
  position: relative;
  background: #1a1f35;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 6px solid rgb(46 51 58 / 40%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.browser-frame:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: scale(1.005);
}

.browser-frame:hover .browser-content {
  transform: scale(1.005);
}

.browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #0f1419;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.browser-dot-close {
  background-color: #D54B45;
}

.browser-dot-minimize {
  background-color: #C78D1F;
}

.browser-dot-maximize {
  background-color: #27A783;
}

.browser-dot-red {
  background: #ff5f57;
}

.browser-dot-yellow {
  background: #ffbd2e;
}

.browser-dot-green {
  background: #28ca42;
}

.browser-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.browser-content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.dashboard-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating UI Cards */
.hero-floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  direction: rtl;
  animation: floatAnimation 4s ease-in-out infinite;
}

.hero-floating-card-1 {
  right: 10%;
  top: 20%;
  min-width: 180px;
  animation-delay: 0s;
}

.hero-floating-card-2 {
  left: 10%;
  bottom: 15%;
  min-width: 200px;
  animation-delay: 2s;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.floating-card-icon {
  font-size: 1.25rem;
  color: #3B82F6;
}

.floating-card-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.floating-card-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.floating-line {
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.floating-line:first-child {
  width: 80%;
}

.floating-line:last-child {
  width: 60%;
}

/* Floating Card 2 Styles */
.floating-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.floating-stat-positive {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.floating-stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.floating-progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.floating-progress-fill {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 85%;
  background: #10b981;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.floating-progress-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
  .hero-floating-card {
    right: 2%;
    top: 40%;
  }

  .laptop-wrapper {
    transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
  }
}

@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;
    flex-direction: column;
  }

  .laptop-wrapper {
    transform: none;
  }

  .hero-floating-card {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin-top: 2rem;
    width: 100%;
    max-width: 300px;
    animation: none;
  }

  .hero-floating-card-1 {
    right: auto;
    top: auto;
  }

  .hero-floating-card-2 {
    left: auto;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  .hero-info-capsule {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

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

  .browser-header {
    padding: 0.5rem 0.75rem;
  }

  .browser-url {
    font-size: 0.75rem;
  }

  .hero-floating-card {
    padding: 1rem;
    min-width: auto;
  }
}

/* Features Cards Section */
.hero-features-section {
  width: 100%;
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 2rem;
  direction: rtl;
}

/* --- Hero right block redesign (screenshot-aligned) --- */
.hero-main-layout {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  direction: rtl;
  position: relative;
  z-index: 1;
}

.hero-right-panel {
  text-align: right;
  max-width: 560px;
  justify-self: end;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-right-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(17, 24, 39, 0.35);
  color: rgba(226, 232, 240, 0.95);
  font-size: 0.74rem;
  font-weight: 500;
}

.hero-right-badge i {
  color: #f97316;
  font-size: 0.74rem;
}

.hero-right-title {
  margin: 1.05rem 0 0.85rem;
  line-height: 1.08;
  font-family: inherit;
}

.hero-right-title-line {
  display: block;
  color: #f8fafc;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-family: inherit;
  letter-spacing: 0;
}

.hero-right-title-line strong {
  color: #f97316;
  font-weight: 700;
  font-family: inherit;
}

.hero-right-title-accent {
  color: #f97316;
}

.hero-right-description {
  margin: 0;
  max-width: 520px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.02rem;
  line-height: 1.75;
  font-family: inherit;
}

.hero-right-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

.hero-right-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0.72rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-right-btn-primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

.hero-right-btn-primary:hover {
  background: linear-gradient(135deg, #ba5c14, #dc6916);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.65);
  transform: translateY(-1px);
}

.hero-right-btn-secondary {
  background: #182941;
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-right-btn-secondary:hover {
  background: linear-gradient(135deg, #1f3556, #182941);
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.hero-right-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

.hero-right-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  padding: 0.36rem 0.64rem;

  background: #121e33; /* вместо rgba */
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: rgba(226, 232, 240, 0.92);

  font-size: 0.72rem;
  white-space: nowrap;

  transition: all 0.2s ease;
}

.hero-right-chip i {
  color: #f97316;
  font-size: 0.66rem;
}

.hero-left-panel {
  position: relative;
  justify-self: start;
  width: 100%;
  max-width: 540px;
}

.hero-dashboard-shell {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  padding: 16px;
  background: #182941;
  border: 1px solid rgba(107, 114, 128, 0.26);
  box-shadow: 0 24px 50px rgba(3, 7, 18, 0.38);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-dashboard-card {
  background: #f1f5f9;
  border-radius: 22px;
  padding: 16px 16px 14px;
  direction: rtl;
  text-align: right;
  border: 1px solid #d8dee9;
  font-family: inherit;
}

.hero-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  direction: ltr;
}

.hero-dashboard-pill {
  background: #bfe8d8;
  color: #0f766e;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-dashboard-status {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-dashboard-title {
  margin: 0;
  font-size: 2.05rem;
  line-height: 1.1;
  color: #0f172a;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6dde8;
  font-family: inherit;
  font-style: normal;
}

.hero-dashboard-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  direction: ltr;
}

.hero-stat-item {
  background: #e9eef5;
  border-radius: 14px;
  padding: 12px 10px 10px;
  text-align: center;
}

.hero-stat-label {
  color: #64748b;
  font-size: 0.84rem;
}

.hero-stat-value {
  margin-top: 2px;
  color: #0f172a;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 700;
  font-family: inherit;
  font-style: normal;
}

.hero-stat-note {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.83rem;
}

/* Смартфон: подписи разной длины — без фикс. высоты цифры «плывут» по вертикали между колонками */
@media (max-width: 768px) {
  .hero-dashboard-stats {
    gap: 8px;
  }

  .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 8px 8px;
  }

  .hero-stat-label {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    padding-inline: 2px;
  }

  .hero-stat-value {
    margin-top: 6px;
    min-height: 2.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .hero-stat-note {
    margin-top: 6px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    font-size: 0.78rem;
  }
}

.hero-task-widget {
  margin-top: 12px;
  background: #eef3f8;
  border: 1px solid #d4dce8;
  border-radius: 20px;
  padding: 12px;
}

.hero-task-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #334155;
  direction: rtl;
  text-align: right;
}

.hero-task-header > div {
  flex: 1;
  text-align: right;
}

.hero-task-header i {
  color: #f59e0b;
  font-size: 0.92rem;
}

.hero-task-header-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  flex-shrink: 0;
  margin: 0;
  align-self: center;
  line-height: 1;
}

.hero-task-header-icon i {
  line-height: 1;
  display: block;
}

.hero-task-kicker {
  font-size: 0.8rem;
  color: #64748b;
}

.hero-task-title {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
  margin-top: 2px;
  font-family: inherit;
  font-style: normal;
  text-align: right;
}

.hero-task-row {
  margin-top: 10px;
  border: 1px solid #d4dce8;
  background: #f8fafc;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  direction: ltr;
}

.hero-task-text-wrap {
  text-align: right;
  direction: rtl;
}

.hero-task-text {
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-task-subtext {
  margin-top: 1px;
  color: #64748b;
  font-size: 0.83rem;
}

.hero-task-tag {
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  white-space: nowrap;
}

.hero-task-tag--red {
  color: #b91c1c;
  background: #fee2e2;
}

.hero-task-tag--blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.hero-task-tag--green {
  color: #047857;
  background: #d1fae5;
}

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

  .hero-right-panel,
  .hero-left-panel {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-dashboard-shell {
    max-width: 100%;
  }
}

.hero-features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-draggable{
  cursor: move !important;
}
.hero-feature-card {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.landing-draggable{
  cursor: move !important;
}
.landing-selected{
  cursor: text !important;
}
.feature-icon {
  font-size: 1.5rem;
  color: #60A5FA;
}

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

.feature-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .hero-right-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .hero-right-btn {
    width: 100%;
  }

  .landing-editor-container{
    height: auto !important;
  }
  .editor-content,.editor-toolbar,.toolbar-left,.toolbar-right{
    flex-direction: column;
  }
  .editor-canvas{
    padding:1rem 0 !important;
  }
  .modal-overlay{
    padding: 1rem !important;
  }
  .hero-features-section {
    margin-top: 2rem;
    padding: 0;
  }

  .hero-features-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-feature-card {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }
}

/* Stats Section Styles */
.stats-container {
  background-color: transparent;
  padding: 1.2rem 0 0;
  margin-bottom: 1rem;
  direction: rtl;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.45rem 1.1rem 1.1rem;
  text-align: center;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: inherit;
}

.stat-card:hover {
  border-color: #d5dee9;
}

.stat-metric {
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.05;
  margin-bottom: 0.55rem;
  font-family: inherit;
  font-style: normal;
  letter-spacing: 0;
}

.stat-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.35;
  font-weight: 500;
  font-family: inherit;
  font-style: normal;
  letter-spacing: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-container {
    padding-top: 0.8rem;
  }

  .stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-inline: 12px;
    box-sizing: border-box;
  }

  .stat-card {
    min-height: 102px;
    border-radius: 16px;
    padding: 1rem 0.8rem 0.85rem;
  }

  .stat-metric {
    font-size: 2rem;
    margin-bottom: 0.35rem;
  }

  .stat-description {
    font-size: 0.92rem;
  }
}

/* Features Section Styles */
.features-section {
  background-color: #f5f6f8;
  border-top: 1px solid #e2e8f0;
  padding: 32px 20px 40px;
  direction: rtl;
  text-align: center;
  font-family: inherit;
}

.features-header {
  max-width: 1180px;
  margin: 12px auto 12px;
  display: flex;
  justify-content: center;
}

.features-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1e6, #ffe4cc);
  color: #ea580c; 
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.18);
  
  transition: all 0.2s ease;
}

.features-brand-pill i {
  color: #f97316;
  font-size: 0.74rem;
}

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

.features-title {
  font-size: clamp(1.9rem, 2.75vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.18;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
}

.features-subtitle {
  font-size: 1.02rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  font-family: inherit;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  direction: ltr;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  text-align: right;
  min-height: 210px;
  font-family: inherit;
  direction: rtl;
}

.feature-card:hover {
  border-color: #d6dee9;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px auto;
  background-color: #091c3c;
  color: #ffffff;
  font-size: 0.95rem;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.18;
  color: #0f172a;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
}

.feature-description {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  font-family: inherit;
}

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

@media (max-width: 768px) {
  .features-section {
    padding: 28px 14px 34px;
  }

  .features-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .features-subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: 182px;
    padding: 18px 16px 14px;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.82rem;
  }
}

/* Process / Desk & field promo section */
.process-section.process-field-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  background-color: #0a192f;
  background-image: linear-gradient(
    to left,
    rgba(255, 107, 0, 0.09) 0%,
    rgba(255, 107, 0, 0.03) 20%,
    rgba(10, 25, 47, 0) 80%
  );
  direction: rtl;
}

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

.process-field-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
}

.process-field-right {
  flex: 1 1 0;
  min-width: 0;
  max-width: 32rem;
  text-align: right;
  font-family: inherit;
}

.process-field-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.process-field-accent-bar {
  display: none;
}

.process-field-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  font-family: inherit;
  font-style: normal;
  position: relative;
  padding-right: 1rem;
}

.process-field-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 3px;
  background-color: #ff6b00;
}

.process-field-description {
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
}

.process-field-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b00;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.process-field-cta:hover {
  opacity: 0.88;
}

.process-field-cta i {
  font-size: 0.9em;
}

.process-field-left {
  flex: 1 1 0;
  min-width: 0;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* מוקאפ טלפון — כמו בעיצוב יעד (מסך אפור בהיר, כרטיסים לבנים, נק) */
.process-field-phone {
  width: 100%;
  max-width: 290px;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.38));
}

.process-field-phone-shell {
  background: #1e293b;
  border-radius: 2.65rem;
  padding: 0.55rem;
  border: 1px solid #253248;

}

.process-field-phone-screen {
  position: relative;
  background: #f8fafc;
  border-radius: 2.05rem;
  border: 1px solid #e2e8f0;
  padding: 2.35rem 1.25rem 1.2rem;
  min-height: 540px;
  direction: rtl;
  text-align: right;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.field-app-notch {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.75rem;
  height: 1.55rem;
  background: #0f172a;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.field-app-header {
  padding-top: 0.15rem;
}

.field-app-title {
  margin: 0 0 0.38rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.field-app-subtitle {
  margin: 0 0 0.62rem 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.45;
}

.field-app-badge {
  display: inline-block;
  padding: 0.35rem 0.68rem;
  border-radius: 0.55rem;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 600;
}

.field-app-cards {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.field-app-card {
  margin: 0;
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.93rem 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.field-app-card-title {
  margin: 0 0 0.42rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.field-app-card-meta {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.45;
}

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

.field-app-hours-panel {
  margin-top: auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.11);
  animation: phone-bounce 1.2s ease-in-out infinite;
}

.field-app-hours-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  direction: rtl;
  margin-bottom: 0.88rem;
}

.field-app-hours-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.field-app-hours-context {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

.field-app-hours-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.55rem;
  direction: rtl;
}

.field-app-hours-input {
  flex: 0 0 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.field-app-hours-btn {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0.65rem;
  background: #ff6b00;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.58rem 0.7rem;
  cursor: default;
  font-family: inherit;
  line-height: 1.25;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.38);
}

@media (max-width: 900px) {
  .process-field-layout {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .process-field-right {
    max-width: none;
  }

  .process-field-left {
    min-height: auto;
    padding: 0.75rem 0 1.5rem;
  }

  .process-field-phone {
    max-width: 286px;
    margin: 0 auto;
  }

  .process-field-phone-screen {
    min-height: 400px;
    padding: 2.2rem 1.15rem 1.15rem;
  }
}

/* Load planning section (תכנון עומסים) — replaced former integrations block */
.load-planning-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  background-color: #071120;
}

.load-planning-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  direction: ltr;
}

.load-planning-copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: 32rem;
  direction: rtl;
  text-align: right;
  font-family: inherit;
}

.load-planning-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.load-planning-accent-bar {
  display: none;
}

.load-planning-title {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  font-family: inherit;
  font-style: normal;
  position: relative;
  padding-right: 1rem !important;
}

.load-planning-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 3px;
  background-color: #ff6b00;
}

/* Strong selector for HTML injected blocks */
.article-content .load-planning-title {
  position: relative !important;
  padding-right: 1rem !important;
}

.article-content .load-planning-title::before {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 5px !important;
  border-radius: 3px !important;
  background-color: #ff6b00 !important;
}

/* If title HTML has trailing "<br>&nbsp;", hide extra line height */
.load-planning-title br:last-of-type {
  display: none !important;
}

.load-planning-description {
  margin: 0 0 1.75rem 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d1d5db;
  font-family: inherit;
}

.load-planning-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b00;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.load-planning-cta:hover {
  opacity: 0.88;
}

.load-planning-cta i {
  font-size: 0.9em;
}

.load-planning-visual {
  flex: 1 1 0;
  min-width: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* כרטיס ניהול משאבים ועומסים */
.load-widget {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  font-family: inherit;
  direction: rtl;
  text-align: right;
}

.load-widget-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #e9eef5;
  border-bottom: 1px solid #dce3ed;
}

.load-widget-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
}

.load-widget-header-title i {
  font-size: 0.95rem;
  color: #475569;
}

.load-widget-date-pill {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.load-widget-body {
  padding: 0.85rem 1rem 1rem;
  background: #ffffff;
}

.load-widget-grid {
  display: grid;
  grid-template-columns: minmax(5.5rem, 1.1fr) repeat(4, minmax(0, 1fr));
  gap: 0.45rem 0.35rem;
  align-items: center;
}

.load-widget-head {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  padding: 0.2rem 0;
}

.load-widget-head-member {
  text-align: right;
  padding-inline-end: 0.15rem;
}

.load-widget-row-member {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0.35rem 0;
}

.load-widget-avatar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.load-widget-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
}

.load-widget-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0;
}

.load-widget-cap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.45rem 0.35rem;
  border-radius: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.load-widget-cap--ok {
  background: #dcfce7;
  color: #166534;
}

.load-widget-cap--overload {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #dc2626;
}

@media (max-width: 900px) {
  .load-planning-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .load-planning-copy {
    max-width: none;
  }

  .load-planning-visual {
    min-height: auto;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .load-widget {
    max-width: 100%;
  }
}

/* AI Assistant promo section (עוזר פרויקטים) — replaced former reviews block */
.ai-assistant-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  background-color: #0a192f;
}

.ai-assistant-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  direction: ltr;
}

.ai-assistant-visual {
  flex: 1 1 0;
  min-width: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ai-chat-card {
  width: 100%;
  max-width: 570px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    -18px 0 55px rgba(255, 122, 26, 0.22),
    18px 0 55px rgba(139, 92, 246, 0.22);

  font-family: inherit;
  direction: rtl;
  text-align: right;
  animation: ai-chat-shadow-flow 5.2s ease-in-out infinite;
}

@keyframes ai-chat-shadow-flow {
  0% {
    box-shadow:
      0 30px 78px rgba(0, 0, 0, 0.58),
      -22px 0 70px rgba(255, 122, 26, 0.38),
      22px 0 70px rgba(139, 92, 246, 0.3);
  }
  33% {
    box-shadow:
      0 30px 82px rgba(0, 0, 0, 0.6),
      -10px -10px 78px rgba(255, 122, 26, 0.28),
      26px 10px 78px rgba(59, 130, 246, 0.42);
  }
  66% {
    box-shadow:
      0 30px 82px rgba(0, 0, 0, 0.6),
      -26px 10px 78px rgba(251, 146, 60, 0.4),
      12px -10px 78px rgba(168, 85, 247, 0.4);
  }
  100% {
    box-shadow:
      0 30px 78px rgba(0, 0, 0, 0.58),
      -22px 0 70px rgba(255, 122, 26, 0.38),
      22px 0 70px rgba(139, 92, 246, 0.3);
  }
}

.ai-chat-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-header-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ff7a00 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.ai-chat-header-text {
  flex: 0 1 auto; 
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
  text-align: right;
  margin-left: auto; 
}

.ai-chat-header-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ai-chat-header-sub {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.35;
}

.ai-chat-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-chat-user-bubble {
  padding: 1.15rem 1.1rem;
  background: #334155;
  border-radius: 0.75rem; 
  border-top-right-radius: 0; /* острый верхний правый угол */
  font-size: 0.875rem;
  line-height: 1.65;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: auto; /* смещаем влево */
  max-width: 90%;
  text-align: right;
}

.ai-chat-ai-panel {
  padding: 1.1rem 1.15rem 1.15rem;

  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: 0.75rem;
  border-top-left-radius: 0;

  background: #343137;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);

  max-width: 90%;
  width: 90%; /* 👈 ВАЖНО */
  margin-left: auto;
  align-self: flex-end; /* 👈 правильный RTL способ */
}

.ai-chat-ai-intro {
  margin: 0 0 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
}

.ai-chat-ai-line {
  margin: 0 0 0.45rem 0;
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: right;
}

.ai-chat-ai-line:last-of-type {
  margin-bottom: 0;
}

.ai-chat-ai-step {
  font-weight: 700;
  color: #f97316;
}

.ai-chat-ai-rest {
  color: #ffffff;
  font-weight: 500;
}

.ai-chat-ai-footer {
  margin: 0.85rem 0 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.5;
  text-align: right;
}

.ai-chat-ai-footer strong {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.ai-assistant-copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: 34rem;
  direction: rtl;
  text-align: right;
  font-family: inherit;
}

.ai-assistant-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
}

.ai-assistant-badge i {
  color: #e67e22;
  font-size: 0.95rem;
}

.ai-assistant-title {
  margin: 0 0 1.25rem 0;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ai-assistant-intro {
  margin: 0 0 2.25rem 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
}

.ai-assistant-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ai-assistant-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.ai-assistant-feature-icon {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ff7a1a 0%, #ff6b00 100%);
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.ai-assistant-feature-body {
  min-width: 0;
}

.ai-assistant-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.ai-assistant-feature-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .ai-assistant-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-assistant-copy {
    max-width: none;
    order: 1;
  }

  .ai-assistant-visual {
    min-height: auto;
    order: 2;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .ai-chat-card {
    max-width: 100%;
  }
}

/* Guides split blocks — страница блога/категории (CategoryComponent) */
.blog-guides-page {
  max-width: none !important;
  width: 100%;
  margin: 0;
  padding: 0;
  direction: rtl;
}

/* Не дублировать full-bleed на обёртке: секции ниже сами выходят на 100vw через .component-router */
.blog-guides-page > .guides-top-wrapper:first-child {
  margin-top: 0;
}

.guides-top-wrapper {
  direction: rtl;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 2.8rem;
  background: #0a192f;
  max-width: none !important;
  
}

.guides-top-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.guides-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.08);
  margin-bottom: 1rem;
}

.guides-top-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
  font-family: inherit;
}

.guides-top-description {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #cbd5e1;
  font-size: 1.03rem;
  line-height: 1.7;
}

.pricing-plans-page .guides-top-wrapper,
.pricing-plans-page .guides-bottom-wrapper {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.pricing-plans-page > .guides-top-wrapper:first-child {
  margin-top: 0;
}

.contact-component > .guides-top-wrapper {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.guides-bottom-wrapper {
  direction: rtl;
  background: #eef2f7;
  min-height: 320px;
  padding: 4rem 1rem;
  max-width: none !important;
  
}

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

.guides-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  direction: ltr;
}

.guides-card {
  direction: rtl;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  text-align: right;
}

.guides-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.7rem;
}

.guides-card-title {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 700;
}

.guides-card-text {
  margin: 0 0 0.8rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.guides-card-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.guides-seo-cta {
  background: #e9eef5;
  border-radius: 18px;
  padding: 2rem 1.25rem;
  text-align: center;
  color: #0f172a;

}

.guides-seo-cta h2 {
  margin: 0 0 0.6rem;
}

.guides-seo-cta p {
  margin: 0;
  color: #64748b;
}

@media (max-width: 900px) {
  .guides-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* 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 {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2rem);
  background: #0a192f;
  direction: rtl;
}

.signup-cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: auto;
  height: 1px;
  background: rgba(148, 163, 184, 0.25); /* серый */
}

.signup-cta-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.signup-cta-title {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: inherit;
}

.signup-cta-description {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #94a3b8;
  margin: 0 0 2rem 0;
  line-height: 1.65;
  max-width: 920px;
  font-weight: 400;
  font-family: inherit;
}

.signup-cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  align-items: center;
}

.signup-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  background: #f97316;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  border: none;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.signup-cta-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.45);
}

.signup-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  background: transparent;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid rgba(148, 163, 184, 0.55);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.signup-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(203, 213, 225, 0.65);
  transform: translateY(-1px);
}

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

  .signup-cta-description {
    margin-bottom: 1.75rem;
  }

  .signup-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
  }

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

/* 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: #cbd5e1;
  }

  #menu a.router-link-exact-active,
  .module-menu a.router-link-exact-active{
    color: #ffffff;
    background-color: #ff6b00;
  }
  .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-13 .main-content .container,
#menu-item-14 .main-content .container,
.cms-public-content .main-content .container {
  max-width: none;
  width: 100%;
}

.user-component-content{
  background: #fcf8fb;
}

.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: 0;
  max-width: none;
  margin: 0;
  direction: rtl;
  border-radius: 0;
}

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

.pricing-plans-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.pricing-plans-title-dark {
  color: #222;
}

.pricing-plans-title-purple {
  color: #2e6eea;
}

.pricing-plans-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.pricing-plans-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pricing-plans-toggle-label {
  font-size: 0.9375rem;
  color: #555;
  font-weight: 500;
}

.pricing-plans-toggle-label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-plans-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  cursor: pointer;
}

.pricing-plans-toggle-track {
  width: 100%;
  height: 100%;
  background-color: #E2E8F0;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  position: relative;
}

.pricing-plans-toggle-track.annual {
  background-color: #2e6eea;
}

.pricing-plans-toggle-thumb {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-plans-toggle-thumb.annual {
  transform: translateX(-28px);
}

.pricing-plans-toggle-savings {
  font-size: 0.85rem;
  color: #10B981;
  font-weight: 600;
}

.pricing-plans-savings-badge {
  padding: 0.375rem 0.875rem;
  background-color: #10B981;
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-plans-loading,
.pricing-plans-empty {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-lower-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0.6rem; /* можно чуть уменьшить */
  align-items: stretch;
}

.pricing-left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-left-card {
  background: #f2f5fa;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  padding: 1.25rem;
}

.pricing-left-title {
  margin: 0 0 0.9rem 0;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  font-family: inherit !important;
  font-style: normal !important;
  letter-spacing: normal;
  text-align: right;
  font-synthesis: none;
}

.pricing-left-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.pricing-left-grid-item {
  background: #e9edf3;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem;
  text-align: right;
}

.pricing-left-grid-item h3,
.pricing-left-faq-item h3 {
  margin: 0 0 0.45rem 0;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit !important;
  font-style: normal !important;
  letter-spacing: normal;
  font-synthesis: none;
}

.pricing-left-grid-item p,
.pricing-left-faq-item p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.55;
  font-family: inherit;
}

.pricing-left-faq-list {
  display: grid;
  gap: 0.75rem;
}

.pricing-left-faq-item {
  text-align: right;
}

.pricing-right-column .pricing-plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-right-card-wrap {
  display: flex;
  justify-content: center;
  height: 100%;
}

.pricing-core-card {
  width: 100%;
  height: 100%;
  background: #f7f8fb;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 22px;
  padding: 1.4rem 1.35rem 1.2rem;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
  text-align: right;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.pricing-core-badge {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing-core-title {
  margin: 0;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: inherit !important;
  font-style: normal !important;
  letter-spacing: normal;
  font-synthesis: none;
  margin: 12px 0 0 0;
}

.pricing-core-price-row {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-core-price {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
}

/* ContentComponent business fit block */
.business-fit-section {
  background: #eef2f7;
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem clamp(1.8rem, 3vw, 2.6rem);
  direction: rtl;
}

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

.business-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.business-fit-card {
  background: #f7f8fb;
  border: 1px solid #d8e0eb;
  border-radius: 18px;
  padding: 1.05rem 1.15rem 1rem;
  text-align: right;
}

.business-fit-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.1rem auto;
  font-size: 1.2rem;
}

.business-fit-icon-blue { background: #e7eeff; color: #2563eb; }
.business-fit-icon-green { background: #e7f7ee; color: #059669; }
.business-fit-icon-violet { background: #efe7ff; color: #7c3aed; }
.business-fit-icon-orange { background: #fff0e4; color: #ea580c; }

.business-fit-card-title {
  margin: -0.12rem 0 0.45rem;
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
}

/* Force tighter icon-title spacing even for raw h3 markup */
.business-fit-card > h3,
.business-fit-card .business-fit-card-title {
  margin-top: 0.5rem !important;
  margin-bottom: 0.38rem !important;
}

.business-fit-card-text {
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.business-fit-benefits {
  margin-top: 1rem;
  background: #f7f8fb;
  border: 1px solid #d8e0eb;
  border-radius: 20px;
  padding: 1.1rem 1.15rem 1.2rem;
}

.business-fit-benefits-title {
  margin: 0 0 0.9rem;
  text-align: right;
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
}

.business-fit-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.business-fit-benefit-item {
  background: #e9edf3;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  text-align: right;
}

.business-fit-benefit-item h4 {
  margin: 0 0 0.45rem;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
}

.business-fit-benefit-item p {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ContentComponent: tools + first month panel */
.work-tools-section {
  direction: rtl;
  background: #eef2f7;
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem 2.3rem;
}

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

.work-tools-grid {
  margin-bottom: 1.1rem;
}

.work-tools-grid .feature-card {
  min-height: 180px;
}

.work-tools-grid .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  margin-bottom: 0.75rem;
}

.work-tools-grid .feature-title {
  font-size: 2rem;
  margin-bottom: 0.45rem;
}

.work-tools-grid .feature-description {
  font-size: 0.95rem;
}

.first-month-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 0.95rem;
  background: #e9edf3;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  padding: 1.1rem;
  direction: rtl;
  justify-items: stretch;
  align-items: start;
}

.first-month-offer {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  padding: 1rem;
  text-align: right;
}

.first-month-tag {
  display: inline-block;
  color: #f97316;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.first-month-offer-title {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.first-month-offer-text {
  margin: 0 0 0.9rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.first-month-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 1rem;

  background: linear-gradient(135deg, #ff6b00, #ff7a1a);
  color: #fff;
  text-decoration: none;

  border-radius: 10px;
  border: none;

  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.45);

  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.first-month-offer-btn:hover {
  background: linear-gradient(135deg, #ba5c14, #dc6916);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.65);
  transform: translateY(-1px);
}

.first-month-offer-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.4);
}

.first-month-benefits {
  text-align: right;
  padding: 0.2rem 0 0.2rem 0.35rem;
  justify-self: end;
  width: 100%;
}

.first-month-benefits-title {
  margin: 0 0 0.65rem;
  color: #0f172a;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.first-month-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;

  direction: rtl;
}

.first-month-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  color: #334155;
  font-size: 0.94rem;
  line-height: 1.55;
}

.first-month-benefits-list i {
  color: #f97316;
  font-size: 0.88rem;
}

/*
 * Full-bleed внутри .container: раньше мешало * { max-width:100% }.
 * Универсальный класс — можно вешать на любую секцию внутри центрированной колонки.
 */
.full-bleed {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/*
 * Без «>»: HTML из админки (v-html / обёртка) кладёт секции НЕ прямым ребёнком .component-router,
 * только потомком — иначе full-bleed не применяется и снова видны «полосы» body по бокам.
 */
.component-router .work-tools-section,
.component-router .business-fit-section {
  position: relative;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/*
 * Блог: без 100vw (на хосте calc(50% - 50vw) в узком .container = пол-экрана).
 * Full-bleed для pricing/contact — см. .pricing-plans-page / .contact-component выше.
 */
.blog-guides-page > .guides-top-wrapper,
.blog-guides-page > .guides-bottom-wrapper,
.component-router .blog-guides-page .guides-top-wrapper,
.component-router .blog-guides-page .guides-bottom-wrapper {
  position: relative;
  width: 100%;
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
  margin-inline: 0;
  box-sizing: border-box;
}

.blog-guides-page .guides-cards-grid {
  direction: rtl;
}

/* Обёртки страниц (Contact, блог, тарифы) — иначе внутренние full-bleed снова режутся по ширине родителя */
.component-router .contact-component,
.component-router .blog-guides-page,
.component-router .pricing-plans-page {
  max-width: none !important;
  width: 100%;
}

/* Корень ContentComponent: обёртка над секциями / v-html */
.component-router .content-component-page {
  max-width: none !important;
  width: 100%;
}

/* Тело статьи из CMS (часто оборачивается div’ом под v-html) */
.component-router .content-article-html,
.component-router .article-body-cms {
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

/* Панель «חודש ראשון»: на планшетах/тלефон — колонка, без налезания блоков */
@media (max-width: 900px) {
  .first-month-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1rem 0.9rem;
  }

  .first-month-benefits,
  .first-month-offer {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
  }

  .first-month-benefits-title,
  .first-month-offer-title {
    font-size: clamp(1.2rem, 4.5vw, 1.65rem);
    line-height: 1.25;
  }

  .work-tools-grid .feature-title {
    font-size: 1.25rem;
  }

  .first-month-benefits-list li {
    align-items: flex-start;
  }

  .first-month-benefits-list li span {
    min-width: 0;
  }

  .component-router .guides-top-wrapper,
  .component-router .guides-bottom-wrapper,
  .component-router .work-tools-section,
  .component-router .business-fit-section {
    padding-left: clamp(0.75rem, 4vw, 1.25rem);
    padding-right: clamp(0.75rem, 4vw, 1.25rem);
  }

  .business-fit-grid,
  .business-fit-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-core-period {
  font-size: 1.05rem;
  color: #475569;
}

.pricing-core-description {
  margin: 0.75rem 0 1rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-core-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.pricing-core-feature {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 0.55rem;
  color: #0f172a;
  font-size: 1.02rem;
}

.pricing-core-feature i {
  color: #f97316;
  font-size: 0.95rem;
}

.pricing-core-cta {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00, #ff6b00);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.45);
  transition: transform 0.1s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pricing-core-cta:hover {
  background: linear-gradient(135deg, #ba5c14, #dc6916);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.65);
  transform: translateY(-1px);
}
.pricing-core-cta:active {
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.4);
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-plan-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  text-align: right;
}

.pricing-plan-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.pricing-plan-card-popular {
  border: 2px solid #2e6eea;
  box-shadow: 0 4px 20px rgba(46, 110, 234, 0.3);
}

.pricing-plan-trial-badge {
  position: absolute;
  top: 1rem;
  left: 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: -14px;
  right: 50%;
  transform: translateX(50%);
  background-color: #2e6eea;
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-plan-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.5rem 0;
  text-align: right;
}

.pricing-plan-card-tagline {
  font-size: 0.9375rem;
  color: #666;
  margin: 0 0 1.5rem 0;
  text-align: right;
}

.pricing-plan-card-price {
  text-align: right;
  margin-bottom: 2rem;
}

.pricing-plan-price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.pricing-plan-card-popular .pricing-plan-price-amount {
  color: #2e6eea;
}

.pricing-plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.pricing-plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.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: #2e6eea;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-plan-feature-item span {
  color: #444;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pricing-plan-card-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #2e6eea;
  border-radius: 12px;
  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: #F7FAFC;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-plan-card-button-primary {
  background-color: #2e6eea;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.pricing-plan-card-button-primary:hover {
  background-color: #2e6eea;
  border-color: #FFFFFF;
}

@media (max-width: 1024px) {
  .pricing-lower-layout {
    grid-template-columns: 1fr;
  }

  .pricing-right-column .pricing-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  /* Без внешнего padding: иначе над guides-top-wrapper виден фон body (#f8fafc) */
  .pricing-plans-page {
    padding: 0;
    margin: 0;
    border-radius: 0;
  }

  .pricing-plans-main-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .pricing-plans-subtitle {
    font-size: 1rem;
  }

  .pricing-plans-toggle-wrapper {
    flex-direction: column;
  }

  .pricing-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-left-title {
    font-size: 1.65rem;
  }

  .pricing-left-grid {
    grid-template-columns: 1fr;
  }

  .pricing-right-column .pricing-plans-grid {
    grid-template-columns: 1fr;
  }

  .pricing-core-title {
    font-size: 1.8rem;
  }

  .pricing-core-price {
    font-size: 2.7rem;
  }

  .pricing-plan-card {
    padding: 1.5rem;
  }

  .pricing-plan-price-amount {
    font-size: 2rem;
  }
}

/* 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) {
  .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;
  }
}

/* Front nav items aligned with admin sidebar nav-item style */
#menu a,
.desktop-menu a,
.module-menu a,
::deep(.module-menu .menu-item > a),
::deep(.module-menu .submenu-item > a) {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.8rem 1.2rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  color: #ecf0f1 !important;
  background: transparent !important;
  transition: background 0.3s ease, color 0.3s ease !important;
  transform: none !important;
  border-right: 2px solid transparent !important;
}

#menu a:hover,
.desktop-menu a:hover,
.module-menu a:hover,
::deep(.module-menu .menu-item > a:hover),
::deep(.module-menu .submenu-item > a:hover) {
  background: #0f213f !important;
  color: #ffffff !important;
}

#menu a.router-link-active,
#menu a.router-link-exact-active,
.desktop-menu a.router-link-active,
.desktop-menu a.router-link-exact-active,
.module-menu a.router-link-active,
.module-menu a.router-link-exact-active,
::deep(.module-menu .menu-item > a.router-link-active),
::deep(.module-menu .menu-item > a.router-link-exact-active),
::deep(.module-menu .submenu-item > a.router-link-active),
::deep(.module-menu .submenu-item > a.router-link-exact-active) {
  background: rgba(249, 115, 22, 0.15) !important;
  color: #f97316 !important;
  border-right-color: #f97316 !important;
}