/* ================================================================
   שפת מותג ומערכת עיצוב - פיגום שחקים
================================================================
*/

:root {
  /* פלטת צבעים - ארכיטקטורה ובטיחות פרימיום */
  --primary-dark: #0f172a;    /* כחול נייבי עמוק - משדר יציבות וסמכות הנדסית */
  --secondary-dark: #1e293b;  /* גוון לילה משני */
  --accent-gold: #d97706;     /* זהב בטיחות חם - צבע הנעה לפעולה ראשי */
  --accent-gold-hover: #b45309;
  --accent-light: #fef3c7;    /* רקע מוזהב עדין לאלמנטים מודגשים */
  
  /* צבעי רקע וטקסט */
  --bg-light: #f8fafc;        /* רקע דף נקי ומודרני */
  --bg-white: #ffffff;        /* רקע כרטיסים ואלמנטים צפים */
  --text-main: #0f172a;       /* טקסט כותרות שחור-כחול */
  --text-muted: #475569;      /* טקסט רץ קריא ורך */
  --text-light: #94a3b8;      /* טקסט משני מוחלש */
  
  /* פינות עגולות וצללים */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 8px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-gold: 0 10px 25px rgba(217, 119, 6, 0.25);
  
  /* ניווט ומעברים */
  --nav-height: 80px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── איפוס כללי ומערכת נשימה ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Heebo', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.65;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── כותרות ואלמנטים גלובליים ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── לחצנים ואלמנטים שיווקיים ── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: var(--bg-white) !important;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-dark) !important;
  border: 2px solid #e2e8f0;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── מערכת ניווט (Navbar) ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 78px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.nav-logo-text span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-cta {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* תפריט מובייל נסתר כברירת מחדל */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-menu {
  display: none;
}

/* ── אזור פתיחה (Hero Section) ── */
.hero {
  min-height: 90vh;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 60px 5% 80px 5%;
  background: radial-gradient(circle at 90% 10%, #fef3c7 0%, transparent 40%), 
              linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  position: relative;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 800;
  margin-bottom: 20px;
  background-color: rgba(217, 119, 6, 0.1);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(217, 119, 6, 0.15);
  z-index: -1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 28px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* אלמנט ויזואלי הירו */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-banner {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 100%;
  max-width: 440px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.hero-logo-glow {
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-logo-glow img {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.hero-tagline {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.hero-tagline span {
  color: var(--accent-gold);
}

.hero-sub-tag {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-badge-pill {
  background-color: var(--bg-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-dark);
  border: 1px solid #e2e8f0;
}

.safety-ribbon {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  line-height: 1.4;
}

/* ── סרגל אמון (Trust Bar) ── */
.trust-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 0;
  border-bottom: 4px solid var(--accent-gold);
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 0 5%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-icon {
  font-size: 1.2rem;
}

/* ── סקשנים כלליים ── */
.section {
  padding: 100px 5%;
}

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

.section-label {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 48px;
}

/* ── באנר בטיחות מובנה ── */
.safety-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  border-right: 6px solid var(--accent-gold);
}

.sb-icon {
  font-size: 3rem;
  line-height: 1;
}

.sb-content h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.sb-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 900px;
}

.sb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sb-pill {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── גריד כרטיסי מוצר ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.2);
}

.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #edf2f7;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.product-tag {
  background-color: var(--bg-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid #e2e8f0;
}

.product-tag.tag-service {
  background-color: #ecfdf5;
  border-color: #d1fae5;
  color: #065f46;
}

/* כרטיס יצירת קשר ייעודי בתוך הגריד */
.product-card.contact-card {
  border: 2px dashed var(--accent-gold);
  background-color: rgba(217, 119, 6, 0.02);
  justify-content: center;
}

/* ── מעטפת שירות מלא (Scaffolding Full Service) ── */
.scaffold-section {
  background-color: var(--bg-white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.scaffold-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.scaffold-visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.scaffold-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.scaffold-text h3 em {
  font-style: normal;
  color: var(--accent-gold);
}

.scaffold-text > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.scaffold-features {
  list-style: none;
  margin-bottom: 40px;
}

.scaffold-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.sf-dot {
  background-color: var(--accent-light);
  color: var(--accent-gold);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* מיני שלבים בתוך שירות מלא */
.scaffold-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}

.sc-step {
  position: relative;
}

.sc-step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  opacity: 0.3;
  margin-bottom: 4px;
}

.sc-step-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}

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

/* ── כרטיסיות למה אנחנו (Why Us) ── */
.why-section {
  background-color: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.2);
}

.why-icon-wrap {
  background-color: var(--bg-light);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.why-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── תהליך עבודה (Process) ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 20px;
}

.step {
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  border: 4px solid var(--bg-light);
  box-shadow: 0 0 0 1px var(--primary-dark);
}

.step:first-child .step-num {
  background-color: var(--accent-gold);
  box-shadow: 0 0 0 1px var(--accent-gold);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── פס הנעה לפעולה אמצעי (CTA Band) ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 60px 5%;
  border-top: 4px solid var(--accent-gold);
}

.cta-band h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-dark {
  background-color: var(--accent-gold);
  color: var(--bg-white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-dark:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white) !important;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-outline-dark:hover {
  border-color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ── אזור יצירת קשר וטופס (Contact) ── */
.contact-section {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 90px 5%;
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  background-color: rgba(255, 255, 255, 0.06);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-item-text small {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* טופס יצירת קשר */
.contact-form {
  background-color: var(--bg-white);
  color: var(--text-main);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-form h4 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--secondary-dark);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: var(--bg-white);
  border: none;
  padding: 15px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── פוטר (Footer) ── */
footer {
  background-color: #0b1120;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 5% 30px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 30px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--bg-white);
}

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

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-copy {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

/* ── אלמנטים דביקים (Sticky / Overlays) ── */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  z-index: 999;
  animation: pulseWa 2s infinite;
}

@keyframes pulseWa {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
  50% { transform: scale(1.05); box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
}

/* באנר עוגיות */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 16px 5%;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  border-top: 2px solid var(--accent-gold);
}

.cookie-text {
  font-size: 0.9rem;
  flex: 1;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-accept {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
}

.cookie-decline {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* פאנל נגישות */
#accessibilityBtn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  box-shadow: var(--shadow-md);
}

#accessibilityPanel {
  position: fixed;
  bottom: 80px;
  left: 24px;
  background-color: var(--bg-white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 20px;
  width: 240px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1999;
}

#accessibilityPanel.open {
  display: flex;
}

.acc-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
}

.acc-btn {
  background-color: var(--bg-light);
  border: 1px solid #cbd5e1;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  text-align: right;
  font-weight: 700;
}

.acc-btn:hover {
  background-color: #e2e8f0;
}

/* ── התאמה לרספונסיביות ומסכים קטנים (Responsive) ── */

@media (max-width: 1200px) {
  .hero h1 { font-size: 3rem; }
  .scaffold-feature-grid { gap: 40px; }
}

@media (max-width: 992px) {
  .hero-inner, .scaffold-feature-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    text-align: center;
    padding-top: 40px;
  }
  .hero-sub, .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .scaffold-visual {
    order: 2; /* תמונה מתחת לטקסט במובייל */
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .section { padding: 60px 5%; }
  
  /* תפריט מובייל פעיל */
  .nav-hamburger {
    display: flex;
  }
  
  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
  }
  
  .nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-mobile-menu a {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .nav-mobile-menu .nav-mobile-cta {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: none;
    margin-top: 8px;
  }
  
  /* אפקט המבורגר פתוח */
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero h1 { font-size: 2.3rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .scaffold-steps { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions a { width: 100%; max-width: 300px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .safety-banner { flex-direction: column; padding: 24px; }
}