@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #1a2b5f;
    --primary-blue-dark: #0f1a3d;
    --accent-blue: #3498db;
    --accent-cyan: #00d4ff;
    --light-blue: #e8f4fc;
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --gray: #6c757d;
    --text-dark: #2c3e50;
    --shadow: 0 10px 40px rgba(26, 43, 95, 0.15);
    --shadow-lg: 0 20px 60px rgba(26, 43, 95, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
    --gradient-hero: linear-gradient(180deg, #0a1628 0%, #1a2b5f 50%, #2c4a8c 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', 'Rubik', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    font-size: 1.1rem;
    color: var(--gray);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text .phone {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */

/* --- HERO SECTION - 2026 LUXURY VERSION --- */


.hero {
  position: relative;
  height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #050b17; /* צבע הבסיס של האתר */
  direction: rtl;
}

/* אפקט המיזוג לתחתית - גורם לסקשן להישפך הדרגתית לתוך האתר */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* גובה אזור המיזוג */
  background: linear-gradient(to top, #050b17 10%, transparent 100%);
  z-index: 5;
}

/* טיפול בתמונה - בהירה יותר ומשתלבת */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('images/polygraph-device.jpg');
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: left center; 
  transform: scale(0.95); /* כמעט גודל מלא, נותן מעט אוויר */
  filter: brightness(1.2) contrast(1.1); /* בהירות מאוזנת */
}

/* גרדיאנט חכם - מחשיך רק את אזור הטקסט ומשאיר את המכשיר גלוי */
.hero-overlay-shadow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to left, 
    #050b17 0%, 
    #050b17 30%, 
    rgba(5, 11, 23, 0.4) 60%, 
    transparent 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  z-index: 10;
}

/* --- עיצוב טקסט משודרג --- */

.hero-text h1 {
  font-size: clamp(35px, 5vw, 68px);
  font-weight: 900; /* עובי חזק למילים המרכזיות */
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px; /* מראה מודרני צפוף */
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* עיצוב המילה הראשונה (תבל) כמילה דקה ויוקרתית */
.light-text {
  font-weight: 200;
  opacity: 0.8;
  font-size: 0.8em;
}

.hero-text p {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 45px;
  max-width: 500px;
  line-height: 1.6;
  border-right: 2px solid #00f2fe; /* פס דקורטיבי עדין לצד הפסקה */
  padding-right: 20px;
}

/* --- עיצוב כפתור יוקרתי (GLOW & SHINE) --- */

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00f2fe 0%, #0072ff 100%);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 
              0 10px 40px rgba(0, 114, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* אפקט הברק בכפתור */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.8), 
              0 15px 50px rgba(0, 114, 255, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  margin-right: 15px;
  padding: 16px 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* --- רספונסיביות למובייל - קוד מתוקן סופי --- */
@media (max-width: 768px) {
  .hero {
    height: 100vh; 
    min-height: 600px;
    display: flex;
    align-items: stretch;
    padding: 0;
  }

  .hero-image-overlay {
    filter: brightness(0.9) contrast(1.05);
    background-size: cover; /* שינוי ל-cover כדי שהתמונה תכסה טוב יותר */
    background-position: center;
  }

  .hero-overlay-shadow {
    background: linear-gradient(to bottom, 
      rgba(5, 11, 23, 0.75) 0%, 
      rgba(5, 11, 23, 0.5) 40%, 
      rgba(5, 11, 23, 0.7) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column; /* סדר רגיל */
    justify-content: space-between; /* מפזר בין התוכן */
    height: 100%;
    width: 100%;
    padding: 110px 25px 45px;
  }

  .hero-text {
    text-align: center;
    order: 1; /* הטקסט ראשון - למעלה */
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .hero-text h1 span {
    display: block;
    margin-top: 8px;
    font-size: 0.85em;
  }

  .hero-text p.hero-subtitle {
    display: block !important;
    margin: 12px auto 0;
    border-right: none;
    padding-right: 0;
    font-size: 15px;
    max-width: 90%;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
  }

  /* --- הכפתורים למטה --- */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    order: 2; /* הכפתורים שניים - למטה */
  }

  .btn-primary {
    width: 100%; 
    box-sizing: border-box;
    justify-content: center;
    margin: 0; 
    padding: 17px 20px;
    font-size: 17px;
  }
  
  .btn-secondary {
    width: 100%; 
    box-sizing: border-box;
    justify-content: center;
    margin: 0; 
    padding: 17px 20px;
    font-size: 17px;
  }
}

/* עבור מסכים ממש קטנים */
@media (max-width: 480px) {
  .hero {
    min-height: 570px;
  }
  
  .hero-content {
    padding: 100px 22px 40px;
  }
  
  .hero-text h1 {
    font-size: 27px;
  }
  
  .hero-text p.hero-subtitle {
    font-size: 14px;
    max-width: 95%;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 18px;
    font-size: 16px;
  }
}
/* Floating elements */
.floating-element {
    position: absolute;
    background: rgba(0,212,255,0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: visible;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-polygraph-glass.webp");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: 
    0 40px 120px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: 100px 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
}

/* Service Tags */
.service-tags {
    padding: 60px 5%;
    background: var(--gray-light);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.tag {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

/* ============================================
   VALUES SECTION
============================================ */
.values {
    padding: 100px 5%;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 70px;
    height: 70px;
    stroke: var(--primary-blue);
}

.value-item h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* ============================================
   CLIENTS SECTION
============================================ */
.clients {
    padding: 100px 5%;
    background: var(--gray-light);
}

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

.client-card {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(26,43,95,0.9), transparent);
    z-index: 1;
}

.client-card h3 {
    position: absolute;
    bottom: 25px;
    right: 25px;
    left: 25px;
    color: var(--white);
    z-index: 2;
    font-size: 1.4rem;
}

.client-card:hover img {
    transform: scale(1.1);
}

/* ============================================
   ARTICLES SECTION
============================================ */
.articles {
    padding: 100px 5%;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

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

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.article-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-blue);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq {
    padding: 100px 5%;
    background: var(--gradient-primary);
}

.faq .section-header h2 {
    color: var(--white);
}

.faq .section-header h2::after {
    background: var(--accent-cyan);
}

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

.faq-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.btn-all-faq {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

/* ============================================
   CONTACT FORM SECTION
============================================ */
.contact {
    padding: 100px 5%;
    background: var(--primary-blue);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 100%, rgba(0,212,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(52,152,219,0.1) 0%, transparent 50%);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header h2::after {
    background: var(--accent-cyan);
}

.contact .section-header p {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--gray);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-cyan);
    color: var(--primary-blue-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,212,255,0.4);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-cyan);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-cyan);
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ============================================
   INNER PAGES
============================================ */
.page-hero {
    min-height: 50vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 5% 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0,212,255,0.1) 0%, transparent 60%);
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.page-content {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    color: var(--primary-blue);
    margin: 40px 0 20px;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.page-content ul {
    margin: 20px 0;
    padding-right: 30px;
}

.page-content li {
    margin-bottom: 12px;
    color: var(--gray);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 5% 100px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .articles-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-contact-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,212,255,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue-dark);
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1080px;
  z-index: 99999;
  display: block !important;
}

#cookie-banner .cookie-inner {
  background: rgba(10, 11, 20, 0.85); /* כהה יותר שמתאים לכחול */
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

#cookie-banner .cookie-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #e5e7eb;
}

#cookie-banner .cookie-text strong {
  font-size: 15px;
  font-weight: 700;
  /* טקסט בצבע כחול-ציאן זוהר */
  color: #00d4ff; 
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

#cookie-banner .cookie-text span {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

#cookie-banner .cookie-actions {
  display: flex !important;
  align-items: center;
  gap: 16px;
}

#cookie-banner .cookie-actions button {
  /* גרדיאנט כחול-סגול עמוק */
  background: linear-gradient(135deg, #6366f1, #a855f7); 
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* אפקט זוהר סביב הכפתור */
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

#cookie-banner .cookie-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
  filter: brightness(1.1);
}

#cookie-banner .cookie-actions a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

#cookie-banner .cookie-actions a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* עבור דפים פנימיים */
section.hero.hero-internal {
    min-height: 300px; /* במקום הגובה המקורי */
    height: 50vh; /* או גובה אחר לפי העדפה */
}
/* הוסף את זה לקובץ ה-CSS שלך */

/* סקשן על יוסי קריספל עם תמונה */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.founder-image {
    position: sticky;
    top: 100px;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

.founder-content h2 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.founder-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.founder-content strong {
    color: #00a8cc;
    font-weight: 600;
}

/* Responsive למובייל */
@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .founder-image {
        position: static;
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}