/* Mint – אתר תדמית | מותג טק, מינימלי, מרווח */
/* פלטת צבעים מוכנה ל-Dark Mode: מנטה זרחני על רקע פחם (--mint על --charcoal) */

:root {
  /* רקעים – לבן נקי + אפור בהיר להפרדה */
  --bg-page: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-card: #ffffff;

  /* טקסט – אפור-פחם (Charcoal / Dark Slate), לא שחור מוחלט */
  --text: #1a1a1a;
  --text-heading: #2d3142;
  --text-muted: #6b7280;
  --text-secondary: #4b5563;

  /* מותג והנעה לפעולה – מנטה (רק בנקודות מיקוד) */
  --mint: #00e676;
  --mint-hover: #00c853;
  --mint-subtle: rgba(0, 230, 118, 0.12);

  /* קווים והפרדות */
  --border: #e5e7eb;
  --border-strong: #d1d5db;

  /* פוטר – שחור-פחם עמוק, סגירה יוקרתית */
  --footer-bg: #0a0a0a;
  --footer-text: #ffffff;
  --footer-muted: #a1a1aa;

  --radius: 10px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --font: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  direction: rtl;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header – לבן, קו עדין */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.logo-slogan {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}

.footer .logo-slogan {
  color: var(--footer-muted);
}

.footer .logo:hover .logo-slogan {
  color: var(--mint);
}

.logo-img {
  display: block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--mint);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero – כותרת + מוק-אפ מסך מחשב */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-with-mockup .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0 auto 2rem;
  max-width: 540px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

/* מוק-אפ דפדפן – מסך מחשב */
.hero-mockup {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.browser-frame {
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 24px -8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-dots i:nth-child(1) { background: #f87171; }
.browser-dots i:nth-child(2) { background: #fbbf24; }
.browser-dots i:nth-child(3) { background: #34d399; }

.browser-url {
  flex: 1;
  max-width: 280px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
}

.browser-body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 56px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.75rem;
}

.mockup-logo {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mint);
}

.mockup-nav {
  width: 24px;
  height: 24px;
  background: var(--border);
  border-radius: 6px;
}

.mockup-nav-active {
  background: var(--mint-subtle);
  border: 1px solid var(--mint);
}

.mockup-main {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-bar {
  height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  width: 60%;
}

.mockup-cards {
  display: flex;
  gap: 1rem;
}

.mockup-card {
  flex: 1;
  height: 72px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: block;
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5rem;
}

.mockup-row {
  height: 12px;
  background: linear-gradient(90deg, var(--bg-alt) 0%, var(--bg-alt) 40%, transparent 40%);
  border-radius: 4px;
}

/* Buttons – מנטה + הובר מתוחכם */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--mint);
  color: var(--text-heading);
  box-shadow: 0 2px 8px rgba(0, 230, 118, 0.25);
}

.btn-primary:hover {
  background: var(--mint-hover);
  color: var(--text-heading);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.4), 0 2px 8px rgba(0, 230, 118, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-heading);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Sections – מרווח נדיב */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

/* רקע גריד עדין לסקשנים */
.section-grid-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  background-color: var(--bg-alt);
}

.features.section-grid-bg {
  background-color: var(--bg-page);
}

/* Scroll animations – אלמנטים נכנסים עם תנועה */
.animate-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-el.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-el.animate-delay-1 { transition-delay: 0.1s; }
.animate-el.animate-delay-2 { transition-delay: 0.2s; }
.animate-el.animate-delay-3 { transition-delay: 0.3s; }
.animate-el.animate-delay-4 { transition-delay: 0.4s; }
.animate-el.animate-delay-5 { transition-delay: 0.5s; }
.animate-el.animate-delay-6 { transition-delay: 0.6s; }

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0 auto 3rem;
  max-width: 520px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Features – כרטיסים מינימליים, אייקון מנטה */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-card {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  background: var(--mint-subtle);
  color: var(--mint);
  border-radius: var(--radius);
}

.feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.feature-desc {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Why – Z-Pattern (טקסט | ויזואל) */
.why-z {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.why-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: right;
}

.why-block-reverse {
  flex-direction: row-reverse;
  text-align: left;
}

.why-block-reverse .why-content {
  text-align: left;
}

.why-content {
  flex: 1;
  min-width: 0;
}

.why-heading {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.why-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-visual {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* UI Snippets – קטעי ממשק אמיתיים (Z-Pattern) */
.ui-snippet {
  width: 100%;
  max-width: 320px;
  min-height: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 1. מיני-דאשבורד: סיידבר + רשימת עבודה */
.ui-dashboard {
  display: flex;
  min-height: 200px;
}

.ui-sidebar {
  width: 56px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  gap: 0.25rem;
}

.ui-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.6rem;
  color: var(--text-muted);
  gap: 2px;
}

.ui-nav-icon {
  font-size: 1rem;
}

.ui-nav-item.active {
  color: var(--mint);
  background: var(--mint-subtle);
  border-right: 2px solid var(--mint);
  margin-right: -1px;
}

.ui-nav-label {
  font-weight: 600;
}

.ui-main {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ui-list-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.ui-list-item {
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  background: var(--bg-alt);
  border-radius: 6px;
  color: var(--text-secondary);
}

.ui-list-item:first-of-type {
  border-right: 2px solid var(--mint);
}

/* 2. חיסכון בזמן: אוטומציה + Success Toast */
.ui-automation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  min-height: 140px;
}

.ui-toast {
  font-size: 0.7rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  max-width: 120px;
}

.ui-toast.from {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.ui-toast.to {
  background: var(--mint-subtle);
  border: 1px solid var(--mint);
  color: var(--text-heading);
}

.ui-arrow {
  font-size: 1rem;
  color: var(--mint);
  font-weight: 700;
}

.ui-success-badge {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading);
}

.ui-check {
  font-size: 0.9rem;
}

/* 3. שקיפות: דוחות – גרף + טבלה + KPI */
.ui-reports {
  padding: 1rem;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
}

.ui-reports-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  padding: 0.5rem 0;
}

.ui-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
}

.ui-bars i {
  flex: 1;
  min-height: 12px;
  background: var(--border);
  border-radius: 4px 4px 0 0;
  display: block;
}

.ui-bars i:nth-child(1) { height: 45%; }
.ui-bars i:nth-child(2) { height: 65%; }
.ui-bars i:nth-child(3) { height: 50%; }
.ui-bars i:nth-child(4) { height: 80%; }
.ui-bars i:nth-child(5) { height: 55%; }
.ui-bars i:nth-child(6) { height: 48%; background: var(--mint); }

.ui-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mint);
}

.ui-kpi-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ui-datatable {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.65rem;
}

.ui-datarow {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.4rem;
  background: var(--bg-alt);
  border-radius: 4px;
  color: var(--text-secondary);
}

.ui-datarow span:last-child {
  font-weight: 700;
  color: var(--text-heading);
}

.ui-pie {
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 50%;
  background: conic-gradient(var(--border) 0deg 120deg, var(--mint) 120deg 240deg, var(--border-strong) 240deg 360deg);
}

/* 4. פורטל לקוחות: כרטיס אישור הזמנה */
.ui-portal {
  padding: 1rem;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-portal-card {
  width: 100%;
  max-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ui-portal-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.ui-portal-line {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.ui-portal-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--mint);
  border: none;
  border-radius: 8px;
  cursor: default;
}

/* 5. בנוי לעברית: תפריט ימני + תוכן RTL */
.ui-rtl {
  display: flex;
  min-height: 160px;
  direction: rtl;
}

.ui-rtl-sidebar {
  width: 70px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 0.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ui-rtl-item {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.3rem 0.5rem;
  text-align: right;
}

.ui-rtl-item:first-child {
  color: var(--mint);
}

.ui-rtl-main {
  flex: 1;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
}

.ui-rtl-row {
  font-size: 0.8rem;
  color: var(--text-heading);
  font-weight: 600;
  text-align: right;
}

.ui-rtl-row:last-child {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* אודות – הסיפור שלנו, טקסט מרווח + תמונה בשחור-לבן */
.about-section {
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
}

.about-content {
  padding: 0.5rem 0;
}

.about-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.about-subhead {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.about-subhead:first-of-type {
  margin-top: 2rem;
}

.about-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text-secondary);
}

.mint-condition {
  color: var(--mint);
  font-weight: 700;
}

.about-image-wrap {
  position: sticky;
  top: 6rem;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* בחירת תמונה: החלף ב-assets/about-print.jpg לתמונה אותנטית משלכם */

/* CTA section – רקע אפור בהיר להפרדה */
.cta-section {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.cta-inner {
  text-align: center;
}

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

.cta-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cta-note .cta-link {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}

.cta-note .cta-link:hover {
  text-decoration: underline;
}

/* Footer – פחם, מנטה בהובר */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer .logo {
  color: var(--footer-text);
}

.footer .logo-img {
  filter: brightness(0) invert(1);
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--footer-muted);
}

.footer-link {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--mint);
}

.nav-current {
  color: var(--mint);
}

/* גלילה למעלה – כפתור קבוע בתחתית */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--bg-card);
  border: 1.5px solid var(--mint);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s, color 0.2s;
}

.back-to-top-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.back-to-top:hover .back-to-top-arrow {
  opacity: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--mint);
  color: var(--text-heading);
}

/* ---- דפים פנימיים: מרכז ידע, אבטחה, דמו ---- */
.page-main {
  padding-bottom: 4rem;
}

.page-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.page-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
}

.container-narrow {
  max-width: 720px;
}

.resource-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
}

.resource-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.resource-nav a:hover {
  color: var(--mint);
  background: var(--mint-subtle);
}

/* מרכז ידע – קטגוריות וכרטיסיות */
.resources-section {
  padding-top: 0;
}

.resource-category {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.resource-category:last-of-type {
  border-bottom: none;
}

.resource-cat-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.resource-cat-icon {
  display: inline-flex;
  color: var(--mint);
}

.resource-cat-desc {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.resource-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-list li {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.resource-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(-135deg); /* חץ שמאלה ב-RTL */
  flex-shrink: 0;
  margin-top: -2px;
}

.resource-link:hover {
  color: var(--mint);
}

/* חלוקה לפי נושאים – מודול + תוכן מלא */
.resource-module {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.resource-module:last-child {
  border-bottom: none;
}

.resource-module-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.resource-module-title .resource-cat-icon {
  color: var(--mint);
}

.resource-module-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.resource-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.resource-article:last-child {
  margin-bottom: 0;
}

.resource-article-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.resource-article-body {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* אבטחה ופרטיות – 4 בלוקים */
.security-blocks {
  padding-top: 0;
}

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

.security-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.security-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: var(--mint-subtle);
  color: var(--mint);
  border-radius: 10px;
}

.security-block-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.security-block-sub {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.security-block-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* בקשת דמו – טופס + למה לצפות */
.demo-section {
  padding-top: 0;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
}

.demo-why {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem;
}

.demo-why-title {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
}

.demo-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-why-list li {
  position: relative;
  padding-right: 1.5rem;
  padding-left: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

.demo-why-list li::before {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}

.demo-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.demo-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.demo-label-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

.demo-input {
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-page);
  color: var(--text);
  transition: border-color 0.2s;
}

.demo-input:focus {
  outline: none;
  border-color: var(--mint);
}

.demo-input::placeholder {
  color: var(--text-muted);
}

.demo-input.has-error {
  border-color: #e53935;
}

.demo-input.has-error:focus {
  border-color: #e53935;
}

.demo-error-text {
  font-size: 0.78rem;
  color: #e53935;
  margin-top: 2px;
}

.demo-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-demo {
  margin-top: 0.5rem;
}

/* Responsive – דפים פנימיים */
@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .demo-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-why {
    order: -1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.75rem;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 4rem 0 4rem;
  }

  .hero-mockup {
    margin-top: 2rem;
  }

  .browser-body {
    min-height: 260px;
  }

  .why-block,
  .why-block-reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .why-block-reverse .why-content {
    text-align: center;
  }

  .why-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrap {
    position: static;
  }

  .about-image {
    max-height: 320px;
  }

  .section {
    padding: 4rem 0;
  }

  .section:nth-child(even) {
    background: var(--bg-alt);
  }

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

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

@media (max-width: 480px) {
  .hero-cta,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
