/* בסיסי */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050711;
  color: #f8f9ff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(5,7,17,0.92), rgba(5,7,17,0.3));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 182px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 16px;
}

.logo-sub {
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  opacity: 0.8;
  transition: 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #35b3ff, #0d6efd);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at top left, #12365d 0, transparent 55%),
    radial-gradient(circle at bottom right, #071a32 0, #050711 60%);
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(35,158,255,0.4), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(0,212,255,0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fd6ff;
  margin-bottom: 12px;
}

.hero-section h1 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 15px;
  color: #d3def5;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #35b3ff, #0d6efd);
  color: #fff;
  box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(13,110,253,0.55);
}

.ghost-btn {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: #e4edff;
}

.ghost-btn:hover {
  background: rgba(7,13,28,0.7);
  border-color: rgba(255,255,255,0.35);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.hero-tags span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 12px;
  background: rgba(2,8,23,0.65);
  backdrop-filter: blur(10px);
}

/* TRUST STRIP */

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(90deg, rgba(4,14,30,0.9), rgba(4,17,35,0.9));
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  padding: 10px 0;
  color: #a8bfdc;
}

.trust-inner .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #35b3ff;
}

/* SECTIONS */

.section {
  padding: 70px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #0b172a 0, #050711 55%);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.section-head p {
  max-width: 520px;
  margin: 0 auto;
  color: #c3cfe7;
  font-size: 15px;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: radial-gradient(circle at top left, rgba(53,179,255,0.2), rgba(7,10,24,0.98));
  border-radius: 14px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(1,4,15,0.7);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: #c8d4ee;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #aab8d8;
}

.service-card li::before {
  content: "•";
  margin-left: 4px;
}

/* ABOUT */

.about-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 34px;
  align-items: start;
}

.about-text p {
  color: #d2ddf4;
  font-size: 15px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.about-highlights > div {
  background: rgba(4,10,26,0.95);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 120px;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-highlights strong {
  font-size: 22px;
  display: block;
}

.about-highlights span {
  font-size: 13px;
  color: #a7b6d6;
}

.about-panel {
  background: rgba(4,11,26,0.96);
  border-radius: 18px;
  padding: 22px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(1,4,15,0.8);
}

.about-panel h3 {
  margin-top: 0;
}

.about-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
}

.about-panel li::before {
  content: "▸";
  margin-left: 4px;
  color: #35b3ff;
}

.about-note {
  font-size: 14px;
  color: #c2cfea;
}

/* CTA STRIP */

.cta-strip {
  background: linear-gradient(90deg, #0d6efd, #35b3ff);
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
}

.white-btn {
  background: #ffffff;
  color: #0d6efd;
  border-color: transparent;
}

.white-btn:hover {
  background: #f5f8ff;
}

/* CONTACT */

.contact-section {
  background: #050711;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
}

.contact-text p {
  color: #c7d3ec;
  font-size: 15px;
}

.contact-details p {
  margin: 4px 0;
  font-size: 14px;
}

.contact-details a {
  color: #9fd3ff;
}

.contact-form-wrap {
  background: radial-gradient(circle at top left, rgba(53,179,255,0.18), rgba(3,8,23,0.98));
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(1,4,15,0.85);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.field label {
  color: #e2ebff;
}

input, textarea {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 11px;
  background: rgba(6,10,24,0.9);
  color: #f8f9ff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #35b3ff;
  box-shadow: 0 0 0 1px rgba(53,179,255,0.4);
  background: rgba(8,12,30,0.95);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.full-btn {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin-top: 6px;
  font-size: 13px;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f97373;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #03040c;
  padding: 16px 0 18px;
  font-size: 12px;
  color: #8f9bb7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* WHATSAPP FLOATING */

.whatsapp-floating {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  z-index: 200;
}

/* ANIMATIONS */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 0 8px;
    gap: 8px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    font-size: 13px;
    flex-wrap: wrap;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 110px;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-floating {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}