/* ============ NOYZ landing — tokens ============ */
:root {
  --ink: #0a0a0c;          /* stage dark */
  --smoke: #141419;        /* card surface */
  --smoke-2: #1c1c24;
  --pink: #ff007f;         /* brand */
  --pink-soft: #ff4da6;
  --brass: #e8a33d;        /* saxophone gold */
  --white: #ffffff;
  --dim: #b9b9c6;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 18px;
  --font-display: "Karantina", "Heebo", sans-serif;
  --font-body: "Heebo", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.center { text-align: center; margin-top: 2.2rem; }
.accent { color: var(--pink); }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 24px rgba(255, 0, 127, 0.45);
}
.btn-primary:hover { box-shadow: 0 0 38px rgba(255, 0, 127, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--pink-soft);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); }

.btn-wide { width: 100%; font-size: 1.15rem; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 0, 127, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.45) 0%, rgba(10, 10, 12, 0.55) 60%, var(--ink) 100%);
  z-index: -1;
}

.hero-content { padding: 2rem 1.25rem; max-width: 860px; }

.hero-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.5rem, 17vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  direction: ltr;
  text-shadow: 0 0 60px rgba(255, 0, 127, 0.35);
}

.hero-sub {
  direction: ltr;
  font-size: clamp(0.8rem, 2.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--brass);
  margin-top: 0.8rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.25rem, 3.6vw, 1.9rem);
  font-weight: 700;
  margin-top: 1.6rem;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--dim);
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem; right: 50%;
  transform: translateX(50%);
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(50%) translateY(0); }
  50% { transform: translateX(50%) translateY(8px); }
}

/* ============ LED ticker (signature) ============ */
.ticker {
  overflow: hidden;
  background: var(--pink);
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
}

.ticker-track i {
  font-style: normal;
  color: rgba(10, 10, 12, 0.55);
  font-size: 0.9rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); } /* RTL: track flows right */
}

/* ============ Sections ============ */
.section {
  padding: 4.5rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.02em;
}

.section-sub {
  text-align: center;
  color: var(--dim);
  font-size: 1.1rem;
  margin-top: 0.6rem;
  margin-bottom: 2.4rem;
}

/* ============ Video facades ============ */
.video-facade {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--smoke);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.video-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.video-facade:hover img { transform: scale(1.03); filter: brightness(1.08); }
.video-facade:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
.video-facade iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.play-btn {
  position: absolute;
  top: 50%; right: 50%;
  transform: translate(50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 0, 127, 0.92);
  box-shadow: 0 0 40px rgba(255, 0, 127, 0.6);
  transition: transform 0.2s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent var(--white);
}
.video-facade:hover .play-btn { transform: translate(50%, -50%) scale(1.08); }
.video-facade.small .play-btn { width: 62px; height: 62px; }
.video-facade.small .play-btn::after { border-width: 11px 0 11px 18px; }

/* ============ Services ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.service-card {
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232, 163, 61, 0.5); }

.service-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  object-fit: cover;
  border: 2px solid rgba(232, 163, 61, 0.4);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 0.7rem;
}

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

.services-tagline {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 1.25rem;
}
.services-tagline strong { color: var(--pink-soft); }

/* ============ Pricing ============ */
.pricing-gate {
  text-align: center;
  margin-top: 1.4rem;
}
.pricing-gate p {
  font-size: 1.2rem;
  color: var(--dim);
  margin-bottom: 1.1rem;
}
.pricing-gate[hidden] { display: none; }

.pricing-content { margin-top: 1rem; }
.pricing-content[hidden] { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.price-card {
  position: relative;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255, 0, 127, 0.55); }

.price-badge {
  position: absolute;
  top: -0.85rem; right: 1.4rem;
  background: var(--pink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
}
.price-badge.gold { background: var(--brass); color: var(--ink); }

.price-card h3 { font-size: 1.25rem; font-weight: 700; }

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-soft);
  line-height: 1;
}
.price::after {
  content: "כולל מע״מ";
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dim);
  margin-top: 0.3rem;
}

.price-card p { color: var(--dim); font-size: 0.95rem; flex-grow: 1; }
.price-card .btn { align-self: center; }

.extras {
  margin-top: 2.6rem;
  background: var(--smoke-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem;
}
.extras h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--brass);
  margin-bottom: 0.8rem;
}
.extras ul { list-style: none; display: grid; gap: 0.7rem; }
.extras li { color: var(--dim); }
.extras li strong { color: var(--white); }
.extra-price { color: var(--pink-soft); font-weight: 700; white-space: nowrap; }

.why-me {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
}
.why-me strong { color: var(--white); }

/* ============ Testimonials ============ */
.testimonial-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.quote {
  max-width: 720px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-size: 1.08rem;
  color: var(--dim);
}
.quote p { quotes: none; }
.quote footer {
  margin-top: 1rem;
  color: var(--brass);
  font-weight: 700;
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.about-text .section-title { text-align: right; margin-bottom: 1.2rem; }
.about-text p { color: var(--dim); margin-bottom: 0.9rem; }
.about-signoff { color: var(--pink-soft) !important; font-weight: 700; }

.about-banner {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-top: 4rem;
  line-height: 1.5;
}
.about-banner strong { color: var(--pink-soft); }

/* ============ Gallery ============ */
.gallery-section { max-width: 1280px; padding-top: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.gallery img:hover { transform: scale(1.03); filter: brightness(1.1); }

/* ============ Contact ============ */
.contact-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 0, 127, 0.12), transparent 60%);
  border-top: 1px solid var(--line);
  max-width: none;
}

.urgency {
  text-align: center;
  color: var(--brass);
  font-weight: 700;
  margin: -1rem 0 1.6rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  width: 100%;
  transition: border-color 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8a8a97; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.2);
}

.contact-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.whatsapp-link {
  color: #25d366;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
.whatsapp-link:hover { text-decoration: underline; }
.tel-link { color: var(--dim); text-decoration: none; font-size: 0.95rem; }
.tel-link:hover { color: var(--white); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 1.25rem 6.5rem;
  text-align: center;
}
.footer-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06em;
  direction: ltr;
  color: rgba(255, 255, 255, 0.5);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 1.2rem 0;
}
.socials a { color: var(--dim); transition: color 0.15s ease, transform 0.15s ease; }
.socials a:hover { color: var(--pink-soft); transform: translateY(-2px); }
.copyright { color: #71717d; font-size: 0.88rem; }

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-scroll { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .services, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text .section-title { text-align: center; }
  .about-text { text-align: center; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 3.2rem 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-videos { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
  .ticker-track span { font-size: 1.25rem; }
}
