/* ========== yula-modern-redesign.css ========== */
/* GLOBAL OVERRIDES */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');
* {
  transition: all 0.3s ease !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: #0a0a0f !important;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth !important;
}
a {
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c3aed, #a855f7);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6d28d9, #9333ea);
}
/* NAVBAR - Glass morphism */
header, nav, [class*="navbar"], [class*="header"] {
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  background: rgba(10, 10, 20, 0.65) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3) !important;
}
.w-nav-brand {
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(10px) !important;
}
.w-nav-link {
  border-radius: 10px !important;
  padding: 8px 18px !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid transparent !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.w-nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.nav_cta, a.nav_cta {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3) !important;
  border: none !important;
  color: #fff !important;
}
.nav_cta:hover {
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5) !important;
  transform: translateY(-1px) !important;
}
/* HERO SECTION */
section:first-of-type {
  background: linear-gradient(180deg, #0c0c1d 0%, #0e0e24 40%, #12102a 70%, #0d0d1e 100%) !important;
  position: relative;
}
section:first-of-type::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
section:first-of-type::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
/* Reduce star particles */
.star-dot { opacity: 0.08 !important; }
section:first-of-type .absolute.inset-0.opacity-70 { opacity: 0.25 !important; }
section:first-of-type .absolute.inset-0.opacity-20 { opacity: 0.08 !important; }
section:first-of-type .absolute.inset-0.opacity-5 { opacity: 0.02 !important; }
/* Hero heading gradient */
section:first-of-type h1 {
  background: linear-gradient(160deg, #ffffff 0%, #e2e8f0 40%, #c4b5fd 70%, #a78bfa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
}
section:first-of-type h1 span:last-child,
section:first-of-type h1 div:last-child {
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #6366f1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* Hero eyebrow badge */
.inline-flex.items-center.gap-2.rounded-full {
  background: rgba(124, 58, 237, 0.06) !important;
  border: 1px solid rgba(167, 139, 250, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #c4b5fd !important;
}
/* Hero description */
section:first-of-type p.text-xl {
  color: rgba(255,255,255,0.55) !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
  line-height: 1.85 !important;
}
/* Hero CTA banner */
section:first-of-type a.inline-block.bg-gradient-to-r {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}
section:first-of-type a.inline-block.bg-gradient-to-r:hover {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 48px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
/* Hero buttons */
section:first-of-type .flex.gap-4 a:first-child {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 14px 32px !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
  font-weight: 600 !important;
}
section:first-of-type .flex.gap-4 a:last-child {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  padding: 14px 32px !important;
  font-weight: 500 !important;
}
/* CLIENTS SECTION */
section:nth-of-type(2) {
  background: linear-gradient(180deg, #080814 0%, #0a0a1c 50%, #080814 100%) !important;
}
section:nth-of-type(2) .grid .rounded-xl,
section:nth-of-type(2) .grid > div {
  background: rgba(255,255,255,0.015) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  border-radius: 16px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
section:nth-of-type(2) .grid .rounded-xl:hover,
section:nth-of-type(2) .grid > div:hover {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(124, 58, 237, 0.15) !important;
  transform: translateY(-2px) !important;
}
/* Client logos - grayscale on idle */
img[alt*="לקוח"], img[alt*="בית"], img[alt*="ויצו"], img[alt*="LIFT"],
img[alt*="Lunyo"], img[alt*="Penthouse"], img[alt*="פאראדייב"],
img[alt*="גולטה"], img[alt*="הקצב"], img[alt*="מאסטר"] {
  filter: grayscale(100%) brightness(1.5) !important;
  opacity: 0.6 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
img[alt*="לקוח"]:hover, img[alt*="בית"]:hover, img[alt*="ויצו"]:hover,
img[alt*="LIFT"]:hover, img[alt*="Lunyo"]:hover, img[alt*="Penthouse"]:hover,
img[alt*="פאראדייב"]:hover, img[alt*="גולטה"]:hover, img[alt*="הקצב"]:hover,
img[alt*="מאסטר"]:hover {
  filter: grayscale(0%) brightness(1) !important;
  opacity: 1 !important;
}
/* PROBLEMS SECTION */
section:nth-of-type(3) {
  background: linear-gradient(180deg, #08081a 0%, #0c0c22 50%, #08081a 100%) !important;
}
section:nth-of-type(3) .rounded-2xl {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
section:nth-of-type(3) .rounded-2xl:hover {
  background: rgba(124, 58, 237, 0.04) !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.08) !important;
}
section:nth-of-type(3) .rounded-xl.p-3 {
  background: rgba(124, 58, 237, 0.08) !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 14px !important;
}
section:nth-of-type(3) .bg-gradient-to-r {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 24px !important;
}
/* SERVICES SECTION */
section:nth-of-type(4) {
  background: linear-gradient(180deg, #08081a 0%, #0a0a1e 50%, #080818 100%) !important;
}
section:nth-of-type(4) .rounded-2xl,
section:nth-of-type(4) .rounded-3xl {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
section:nth-of-type(4) .rounded-2xl:hover,
section:nth-of-type(4) .rounded-3xl:hover {
  border-color: rgba(124, 58, 237, 0.25) !important;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1) !important;
  transform: translateY(-6px) !important;
}
section:nth-of-type(4) .rounded-xl {
  background: rgba(124, 58, 237, 0.06) !important;
  border: 1px solid rgba(124, 58, 237, 0.1) !important;
  border-radius: 12px !important;
}
/* STATS SECTION */
section:nth-of-type(5) {
  background: linear-gradient(135deg, #0c0c1e 0%, #10102a 50%, #0c0c1e 100%) !important;
}
section:nth-of-type(5) .text-4xl,
section:nth-of-type(5) .text-5xl {
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* CTA SECTION */
section:nth-of-type(6) {
  background: #050510 !important;
}
section:nth-of-type(6) .rounded-3xl {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(99, 102, 241, 0.03) 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.1) !important;
  border-radius: 28px !important;
}
section:nth-of-type(6) a[href="/contact"] {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
  border-radius: 14px !important;
  padding: 16px 36px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35) !important;
  border: none !important;
}
section:nth-of-type(6) a[href="/contact"]:hover {
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.5) !important;
  transform: translateY(-2px) !important;
}
/* FOOTER */
footer {
  background: #030308 !important;
  border-top: 1px solid rgba(255,255,255,0.03) !important;
}
footer h3 {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
}
footer a { color: rgba(255,255,255,0.45) !important; }
footer a:hover { color: #c4b5fd !important; }
footer a[href="/contact"] {
  background: transparent !important;
  border: 1px solid rgba(124, 58, 237, 0.3) !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  color: #a78bfa !important;
  box-shadow: none !important;
}
footer a[href="/contact"]:hover {
  background: rgba(124, 58, 237, 0.1) !important;
  border-color: rgba(124, 58, 237, 0.5) !important;
}
footer .border-t { border-color: rgba(255,255,255,0.03) !important; }
/* GLOBAL TEXT COLORS */
.text-gray-300 { color: rgba(255,255,255,0.55) !important; }
.text-gray-400 { color: rgba(255,255,255,0.42) !important; }
.text-gray-500 { color: rgba(255,255,255,0.3) !important; }
h1, h2 { text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important; }
/* SECTION SPACING */
section { padding: 80px 0 !important; }
section + section { border-top: 1px solid rgba(255,255,255,0.02) !important; }
/* SCROLL REVEAL ANIMATIONS */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-element.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
/* RESPONSIVE */
@media (max-width: 768px) {
  section { padding: 48px 20px !important; }
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.6rem !important; }
}
