/* ===== מערכות תוכנה — מחלקת סייבר ===== */
:root {
  --bg: #0a0f1c;
  --bg-card: #111a2e;
  --bg-card-hover: #16223c;
  --accent: #00e5a0;
  --accent-dark: #00b87f;
  --accent-glow: rgba(0, 229, 160, 0.15);
  --text: #e8edf5;
  --text-muted: #9aa7bd;
  --border: #1f2c47;
  --danger: #ff5470;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== ניווט ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
}

.logo .shield {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.08em;
}

nav ul {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}

nav a:hover { color: var(--text); background: var(--bg-card); }

nav a.active { color: var(--accent); background: var(--accent-glow); }

nav a.cta {
  background: var(--accent);
  color: #04261b;
  font-weight: 700;
}

nav a.cta:hover { background: var(--accent-dark); color: #04261b; }

/* ===== מבנה כללי ===== */
main { flex: 1; }

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

section { padding: 3.5rem 0; }

h1, h2, h3 { line-height: 1.3; }

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

/* ===== Hero ===== */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow), transparent);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero h1 .highlight { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

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

/* ===== כפתורים ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #04261b;
  box-shadow: 0 0 25px var(--accent-glow);
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== באנר מבצע ===== */
.promo-banner {
  background: linear-gradient(135deg, #0e2a1f, #103324);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px var(--accent-glow);
}

.promo-banner .gift { font-size: 2.5rem; }

.promo-banner h3 { font-size: 1.4rem; color: var(--accent); }

.promo-banner p { color: var(--text-muted); }

.promo-banner .btn { margin-inline-start: auto; }

@media (max-width: 700px) {
  .promo-banner { flex-direction: column; }
  .promo-banner .btn { margin-inline-start: 0; }
}

/* ===== כרטיסים ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.25s;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card .icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }

.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.card p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== מחירון ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}

.price-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.price-card.featured {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 35px var(--accent-glow);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent);
  color: #04261b;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }

.price-card .price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0.6rem 0;
}

.price-card .price small { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; }

.price-card .free-note {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  text-align: right;
  margin: 1.3rem 0 1.8rem;
  color: var(--text-muted);
}

.price-card ul li {
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--border);
}

.price-card ul li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* ===== טופס ===== */
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.3rem; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

label .req { color: var(--danger); }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea { resize: vertical; min-height: 110px; }

/* אייקון לוח השנה — שיהיה נראה ולחיץ על הרקע הכהה */
input[type="date"] { cursor: pointer; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ===== הצהרות / checkbox ===== */
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
  transition: border-color 0.2s;
}

.consent:focus-within { border-color: var(--accent); }

.consent input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  cursor: pointer;
}

.consent label strong { color: var(--text); font-weight: 700; }

/* ===== ספינר שליחה ===== */
.btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

.spinner {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  border: 2.5px solid rgba(4, 38, 27, 0.25);
  border-top-color: #04261b;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -0.2em;
  margin-inline-start: 0.5em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== פרטי קשר ===== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
}

.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.contact-card .icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

.contact-card strong { display: block; margin-bottom: 0.2rem; }

.contact-card span { color: var(--text-muted); font-size: 0.95rem; direction: ltr; display: inline-block; }

/* ===== שלבי תהליך ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }

.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== פוטר ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
}

footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

.center { text-align: center; }

/* ===== כרטיסי מחלקות (עמוד הבית) ===== */
.divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.division {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.6rem 2rem;
  text-align: center;
  transition: all 0.25s;
}

.division:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 0 35px var(--accent-glow);
}

.division .d-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.division h3 { font-size: 1.5rem; margin-bottom: 0.6rem; color: var(--accent); }

.division p { color: var(--text-muted); margin-bottom: 1.4rem; }

.division .go { color: var(--accent); font-weight: 700; }
