/* שיא הנדלן — עיצוב האתר */

:root {
  --navy-950: #070c16;
  --navy-900: #0b1220;
  --navy-800: #111b2e;
  --navy-700: #182543;
  --navy-600: #223258;
  --gold-500: #c9a02c;
  --gold-400: #ddb84a;
  --gold-300: #e9cd7c;
  --text-light: #f4f1e9;
  --text-muted: #a9b3c9;
  --text-dim: #7c869c;
  --border-soft: rgba(201, 160, 44, 0.22);
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text-light);
  font-family: "Assistant", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Rubik", "Assistant", sans-serif;
  font-weight: 800;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--text-muted); }

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

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

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

section { position: relative; padding: 90px 0; }

.section-tag {
  display: inline-block;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(201, 160, 44, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 36px rgba(201, 160, 44, 0.5); }

.btn-outline {
  background: transparent;
  border-color: rgba(244, 241, 233, 0.35);
  color: var(--text-light);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn-whatsapp {
  background: #25d366;
  color: #06210f;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
header.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(7, 12, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
header.site-header.scrolled {
  background: rgba(7, 12, 22, 0.92);
  border-bottom-color: var(--border-soft);
  padding: 10px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.brand-mark { flex: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light);
}
.brand-text strong span { color: var(--gold-400); }
.brand-text small { color: var(--text-dim); font-size: 0.72rem; letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-400); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn span.short-label-only { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background-image:
    linear-gradient(180deg, rgba(7,12,22,0.55) 0%, rgba(7,12,22,0.75) 45%, var(--navy-950) 100%),
    linear-gradient(90deg, rgba(7,12,22,0.9) 0%, rgba(7,12,22,0.25) 65%),
    url("../img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content { max-width: 640px; }

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: var(--text-light);
}
.hero h1 span { color: var(--gold-400); }

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

.check-list {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.98rem;
}
.check-list svg { flex: none; margin-top: 3px; color: var(--gold-400); }

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

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 50%;
  transform: translateX(50%);
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ===== How it works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
}
.step-num {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold-500);
  opacity: 0.55;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 1.1rem; color: var(--text-light); }
.step-card p { font-size: 0.92rem; margin: 0; }

/* ===== Tour section ===== */
.tour-section { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }

.tour-frame-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #000;
  position: relative;
}
.tour-frame-wrap iframe {
  width: 100%;
  height: min(78vh, 780px);
  min-height: 420px;
  border: 0;
  display: block;
}
.tour-fullscreen-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-400);
  font-weight: 700;
}
.tour-fullscreen-link:hover { color: var(--gold-300); }

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.tour-meta span {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
.product-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,160,44,0.25), rgba(201,160,44,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.product-card h3 { color: var(--text-light); font-size: 1.15rem; }
.product-card p { font-size: 0.95rem; margin: 0; }
.badge-soon {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-950);
  background: var(--gold-400);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Promo video showcase */
.promo-video-box {
  max-width: 420px;
  margin: 46px auto 0;
  text-align: center;
}
.promo-video-box video {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #000;
}
.promo-video-box p { margin-top: 14px; font-size: 0.88rem; }

/* ===== Who is it for ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.audience-card .product-icon { margin: 0 auto 16px; }
.audience-card h3 { font-size: 1.05rem; color: var(--text-light); }
.audience-card p { font-size: 0.9rem; margin: 0; }

/* ===== Contact ===== */
.contact-section { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--navy-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 700; color: var(--text-muted); }
.field input, .field textarea {
  background: var(--navy-900);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.98rem;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-400);
}
.form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: -4px; }

.contact-info-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 20px;
}
.contact-info-row { display: flex; align-items: center; gap: 14px; }
.contact-info-row .product-icon { width: 46px; height: 46px; border-radius: 12px; margin: 0; flex: none; }
.contact-info-row div strong { display: block; color: var(--text-light); font-size: 1rem; }
.contact-info-row div span { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-soft);
  padding: 46px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: var(--text-light); font-size: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a, .footer-grid p { color: var(--text-muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #06210f;
  animation: float-pulse 2.4s ease-in-out infinite;
}
@keyframes float-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-950);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--text-light); }
.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn span.long-label { display: none; }
  .nav-cta .btn span.short-label-only { display: inline; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding-top: 110px; }
  .check-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tour-frame-wrap iframe { height: 68vh; }
}
