/* ============================================
   Hazani - פיננסיים וביטוח
   ============================================ */

@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Black.ttf') format('truetype');
  font-weight: 900;
}

:root {
  --navy: #1f2358;
  --navy-deep: #161936;
  --orange: #f6921e;
  --orange-text: #9c4e00;
  --orange-soft: #ffe8cc;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray: #6b7088;
  --line: #e6e8f2;

  --max-width: 1180px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  direction: rtl;
  color: var(--navy-deep);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(31, 35, 88, 0.06);
}

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

.logo-link img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--navy-deep);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

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

.nav-links a:hover {
  color: var(--orange-text);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 13px 30px;
  box-shadow: 0 8px 22px rgba(246, 146, 30, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: right 0.6s ease;
}

.btn-primary:hover::after {
  right: 130%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(246, 146, 30, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 28px;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.05;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1.05;
  min-width: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-content-rise 0.7s ease-out 0.1s forwards;
}

@keyframes hero-content-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  flex: 0.95;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-soft);
  color: var(--orange-text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 146, 30, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(246, 146, 30, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--navy-deep);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 8px;
  background: var(--orange-soft);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  animation: underline-draw 0.8s ease-out 0.6s forwards;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  animation: stat-rise 0.6s ease-out forwards;
}

.hero-stat:nth-child(1) { animation-delay: 0.9s; }
.hero-stat:nth-child(2) { animation-delay: 1.05s; }
.hero-stat:nth-child(3) { animation-delay: 1.2s; }

@keyframes stat-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-stat strong {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}

.hero-stat span {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  animation: hero-visual-rise 0.8s ease-out 0.2s forwards;
}

@keyframes hero-visual-rise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-visual-glow {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(246,146,30,0.32), rgba(246,146,30,0) 68%);
  filter: blur(6px);
  border-radius: 50%;
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.05); }
}

.float-dot {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(246, 146, 30, 0.45);
  animation: dot-float 5s ease-in-out infinite;
  pointer-events: none;
}

.dot-1 { width: 20px; height: 20px; top: 4%;  right: -5%; animation-delay: 0s; }
.dot-2 { width: 11px; height: 11px; top: 32%; left: -6%;  background: var(--navy); box-shadow: 0 8px 16px rgba(31,35,88,0.4); animation-delay: 0.9s; }
.dot-3 { width: 24px; height: 24px; bottom: 16%; right: -7%; opacity: 0.85; animation-delay: 1.7s; }
.dot-4 { width: 9px;  height: 9px;  top: 58%;  right: 6%;  background: var(--orange-soft); box-shadow: none; animation-delay: 2.4s; }
.dot-5 { width: 15px; height: 15px; bottom: -4%; left: 14%; animation-delay: 1.1s; }
.dot-6 { width: 10px; height: 10px; top: -4%;  left: 28%;  background: var(--navy); box-shadow: 0 8px 14px rgba(31,35,88,0.35); animation-delay: 2.9s; }

@keyframes dot-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.18); }
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 30% 70% 70% 30% / 38% 38% 62% 62%;
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 480px;
  box-shadow: 0 30px 60px -20px rgba(31, 35, 88, 0.35);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,35,88,0) 55%, rgba(22,25,54,0.55) 100%);
}

.hero-visual-tag {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(246,146,30,0.4);
}

/* ============ SECTION HEADERS ============ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--orange-text);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-media {
  flex: 0.85;
  min-width: 0;
}

.about-content {
  flex: 1.15;
  min-width: 0;
}

.about-media {
  position: relative;
}

.about-media-frame {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 420px;
  position: relative;
  box-shadow: 0 24px 50px -18px rgba(31,35,88,0.3);
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-media-ring {
  position: absolute;
  inset: -18px;
  border: 2px dashed var(--orange);
  border-radius: 36px;
  opacity: 0.5;
  z-index: -1;
}

.about-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 22px;
  line-height: 1.3;
}

.about-content p {
  color: var(--gray);
  font-size: 1.04rem;
  margin-bottom: 18px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.about-signature-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}

.about-signature-role {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-pill {
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ============ PILLARS (planning sections) ============ */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.pillar-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px -20px rgba(31,35,88,0.22);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 0 24px 0 100%;
  opacity: 0.08;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.pillar-card:hover::before {
  transform: scale(1.3);
  opacity: 0.14;
}

.pillar-card.navy::before { background: var(--navy); }
.pillar-card.orange::before { background: var(--orange); }

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: icon-breathe 3.6s ease-in-out infinite;
}

.pillars .pillar-card:nth-child(1) .pillar-icon { animation-delay: 0s; }
.pillars .pillar-card:nth-child(2) .pillar-icon { animation-delay: 0.5s; }
.pillars .pillar-card:nth-child(3) .pillar-icon { animation-delay: 1s; }

@keyframes icon-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(-3deg); }
}

.pillar-card:hover .pillar-icon {
  transform: rotate(-6deg) scale(1.1);
  animation: icon-wiggle 0.6s ease;
}

.pillar-card.navy .pillar-icon { background: var(--navy); }
.pillar-card.orange .pillar-icon { background: var(--orange); }

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.pillar-card .pillar-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-text);
  margin-bottom: 16px;
  display: block;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.98rem;
  font-weight: 500;
}

.pillar-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
}

.pillar-card.navy .pillar-list li::before { background: var(--navy); }
.pillar-card.orange .pillar-list li::before { background: var(--orange); }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 44px -18px rgba(31,35,88,0.22);
  border-color: transparent;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  animation: icon-breathe-soft 3.8s ease-in-out infinite;
}

.services-grid .service-card:nth-child(odd) .service-icon { animation-delay: 0s; }
.services-grid .service-card:nth-child(even) .service-icon { animation-delay: 0.55s; }
.services-grid .service-card:nth-child(3n) .service-icon { animation-delay: 1.1s; }

@keyframes icon-breathe-soft {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.07) rotate(-2.5deg); }
}

.service-card:hover .service-icon {
  background: var(--orange);
  transform: rotate(-8deg) scale(1.12);
  animation: icon-wiggle 0.6s ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  transition: stroke 0.3s ease;
}

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

@keyframes icon-wiggle {
  0%, 100% { transform: rotate(-8deg) scale(1.12); }
  25% { transform: rotate(6deg) scale(1.14); }
  50% { transform: rotate(-4deg) scale(1.1); }
  75% { transform: rotate(3deg) scale(1.13); }
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ============ PROCESS / WHY ============ */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.why-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
}

.why-card {
  text-align: center;
  padding: 36px 20px;
}

.why-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange-soft);
  margin-bottom: 8px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ============ PARTNERS MARQUEE ============ */
.partners-section {
  padding: 70px 0;
  background: var(--off-white);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-head {
  text-align: center;
  margin-bottom: 40px;
}

.partners-head span {
  color: var(--orange-text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partners-head h2 {
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-top: 10px;
}

.marquee-wrap {
  position: relative;
  width: 100%;
}

.partners-swiper {
  width: 100%;
  overflow: hidden;
  /* Cursor (grab/grabbing) is set directly by Swiper's grabCursor option
     in script.js — no CSS needed here for that. */
}

.partners-swiper .swiper-wrapper {
  align-items: center;
  /* Swiper drives the transform itself (via its own translate3d engine) —
     no CSS @keyframes here. The continuous, gap-free motion and the
     identical-clone padding before/after the real slides are both handled
     internally by Swiper's loop module, the same mechanism Polisure's site
     itself runs on (Elementor's nested-carousel widget is a Swiper wrapper).
     Mouse drag and touch swipe are both enabled (allowTouchMove: true in
     script.js), matching Polisure's own carousel — no arrow buttons needed. */
}

.partners-slide {
  width: auto !important; /* let each slide size to its logo, not an even split */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
}

.partners-slide img {
  height: 64px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.partners-slide img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .partners-slide {
    padding: 0 20px;
  }
  .partners-slide img {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 768px) and (min-width: 601px) {
  .partners-slide {
    padding: 0 26px;
  }
  .partners-slide img {
    height: 50px;
    max-width: 150px;
  }
}

/* ============ CONTACT ============ */
.contact-section {
  position: relative;
  background: var(--navy);
  border-radius: 32px;
  padding: 70px 56px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.contact-text {
  flex: 1.2;
  min-width: 320px;
}

.contact-cards {
  flex: 0.8;
  min-width: 280px;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.12;
}

.contact-text {
  position: relative;
  z-index: 1;
}

.contact-text span.section-eyebrow {
  color: var(--orange);
}

.contact-text h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin: 12px 0 18px;
  line-height: 1.3;
}

.contact-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.04rem;
  margin-bottom: 30px;
  max-width: 480px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  max-width: 480px;
}

.lead-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-form-row input {
  flex: 1;
  min-width: 160px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.96rem;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.lead-form-row input::placeholder {
  color: rgba(255,255,255,0.55);
}

.lead-form-row input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}

.lead-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(246, 146, 30, 0.4);
  font-size: 1.02rem;
  padding: 16px 30px;
}

.lead-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(246, 146, 30, 0.5);
}

.lead-form-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 13px 26px;
}

.btn-ghost-light svg {
  flex-shrink: 0;
}

.btn-ghost-light:hover {
  border-color: var(--orange);
  background: rgba(246, 146, 30, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.contact-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(-4px);
}

.contact-card .ci {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .ci svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.contact-card div strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-card div span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--off-white);
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 36px;
}

.footer-logo img {
  height: 58px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--navy-deep);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--orange-text);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-socials a:hover svg {
  stroke: var(--white);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  stroke: var(--navy);
  transition: stroke 0.25s ease;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s ease;
  animation: wa-pulse 2.6s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-visual {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-visual-glow,
  .float-dot,
  .pillar-icon,
  .service-icon {
    animation: none;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-content, .hero-visual {
    flex: 1 1 100%;
    width: 100%;
  }
  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-visual-frame {
    aspect-ratio: 1066 / 1120;
    min-height: 0;
  }
  .hero-visual-frame img {
    object-position: center;
  }
  .about-grid {
    flex-direction: column;
  }
  .about-media, .about-content {
    flex: 1 1 100%;
    width: 100%;
  }
  .about-media {
    max-width: 420px;
    margin: 0 auto;
  }
  .pillar-card {
    flex: 1 1 100%;
  }
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  .why-card {
    flex: 1 1 calc(50% - 12px);
  }
  .contact-section {
    flex-direction: column;
    padding: 50px 32px;
  }
  .contact-text, .contact-cards {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta .btn-outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(31,35,88,0.08);
  }
  .hero {
    padding: 130px 0 70px;
  }
  .hero-stats {
    gap: 24px;
  }
  .section {
    padding: 64px 0;
  }
  .service-card {
    flex: 1 1 100%;
  }
  .why-card {
    flex: 1 1 100%;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .logo-link img, .footer-logo img {
    height: 42px;
  }
  .header-cta {
    gap: 8px;
  }
  .header-cta .btn-primary {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
  .contact-actions .btn {
    width: 100%;
  }
  .pillar-card {
    min-width: 0;
  }
  .contact-section {
    padding: 40px 22px;
  }
}

/* ============================================
   ACCESSIBILITY (תקן ישראלי 5568 / WCAG 2.0 AA)
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global, consistent focus ring for everyone navigating by keyboard */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ============ Accessibility widget toggle button ============ */
.a11y-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(31,35,88,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.a11y-toggle:hover {
  background: var(--orange);
  transform: scale(1.06);
}

.a11y-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

@media (max-width: 600px) {
  .a11y-toggle {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .a11y-toggle svg {
    width: 24px;
    height: 24px;
  }
}

/* ============ Accessibility widget panel ============ */
.a11y-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 96;
  width: 290px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(22,25,54,0.28);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a11y-panel[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .a11y-panel {
    bottom: 78px;
    right: 14px;
    left: 14px;
    width: auto;
  }
}

.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 4px;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.a11y-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  padding: 4px 8px;
  border-radius: 8px;
}

.a11y-close:hover {
  background: var(--off-white);
  color: var(--navy-deep);
}

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--navy-deep);
  font-weight: 600;
}

.a11y-btn-group {
  display: flex;
  gap: 6px;
}

.a11y-btn-group button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--off-white);
  color: var(--navy-deep);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.a11y-btn-group button:hover {
  background: var(--navy);
  color: var(--white);
}

.a11y-option {
  display: block;
  width: 100%;
  text-align: right;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--off-white);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.a11y-option:hover {
  border-color: var(--navy);
}

.a11y-option[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.a11y-reset {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed var(--gray);
  background: none;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.a11y-reset:hover {
  border-color: var(--navy);
  color: var(--navy-deep);
}

.a11y-statement-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: underline;
  margin-top: 2px;
}

/* ============ Accessibility states applied to <html> ============ */
html.a11y-contrast {
  filter: contrast(1.35) brightness(1.05);
}

html.a11y-contrast body {
  background: var(--white);
}

html.a11y-grayscale {
  filter: grayscale(1);
}

html.a11y-contrast.a11y-grayscale {
  filter: grayscale(1) contrast(1.35) brightness(1.05);
}

html.a11y-underline a {
  text-decoration: underline !important;
}

html.a11y-readable body,
html.a11y-readable input,
html.a11y-readable button {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  letter-spacing: 0.01em;
}

html.a11y-readable p,
html.a11y-readable li {
  line-height: 1.85 !important;
}

html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path d="M3 2l8 19 2-7 7-2z" fill="black" stroke="white" stroke-width="1.5"/></svg>') 4 4, auto !important;
}

html.a11y-stop-motion *,
html.a11y-stop-motion *::before,
html.a11y-stop-motion *::after {
  /* Collapse animations/transitions to near-instant instead of turning them
     off entirely. Several elements on this site (hero text, hero image)
     start at opacity:0 and only become visible once their entrance
     animation finishes and holds the end frame (animation-fill-mode:
     forwards). A flat "animation: none" cancels that entrance animation
     and leaves them stuck at opacity:0 - i.e. the content disappears.
     Letting the animation still run, just effectively instantly, keeps
     every element landing on its correct final, visible state while
     removing all perceived motion. */
  animation-duration: 0.01ms !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  transition-delay: 0s !important;
  scroll-behavior: auto !important;
}

/* ============ Accessibility statement page ============ */
.statement-content {
  max-width: 760px;
  margin: 0 auto;
}

.statement-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy-deep);
  margin: 6px 0 28px;
}

.statement-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 34px 0 12px;
}

.statement-content p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 6px;
}

.statement-list {
  color: var(--gray);
  line-height: 1.85;
  padding-right: 22px;
  margin: 10px 0 6px;
}

.statement-list li {
  margin-bottom: 8px;
}

.statement-list a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}
