/* ==========================================================================
   TechWish — Fresh Pop landing page
   Neobrutalist, bright, RTL Hebrew. Design system extracted from the
   "TechWish Fresh Pop" Claude Design project.
   ========================================================================== */

:root {
  --bg:        #fbf8f3;
  --ink:       #1c2430;
  --blue:      #1789b5;
  --orange:    #ff6b4a;
  --yellow:    #ffd23f;
  --wa:        #25d366;
  --muted:     #46525f;
  --muted-2:   #7d8b99;
  --card:      #ffffff;

  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --radius:    14px;
  --radius-lg: 24px;

  --maxw:      1200px;
  --font-head: 'Suez One', Georgia, serif;
  --font-body: 'Assistant', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: opacity .15s ease, transform .15s ease; }
a:hover { opacity: .9; }

/* shekel sign: Suez One's ₪ glyph is stylized and hard to read —
   always render the sign in the body font, slightly smaller, with a small gap */
.ils {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78em;
  margin-inline-end: 0.08em;
}

h1, h2 { font-family: var(--font-head); font-weight: 400; }

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

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

.section { padding-block: 56px; }

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
  text-align: center;
}
.btn--blue   { background: var(--blue);   color: #fff; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--wa     { background: var(--wa);     color: #fff; }
.btn--lg { font-size: 20px; padding: 18px 40px; box-shadow: var(--shadow-md); }
.btn--md { font-size: 16px; padding: 12px 26px; box-shadow: var(--shadow-sm); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

/* --- header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 56px;
  background: var(--bg);
  border-bottom: 3px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 2px solid var(--ink);
}
.brand__name { font-family: var(--font-head); font-size: 24px; }
.site-nav { display: flex; gap: 28px; font-size: 17px; font-weight: 600; }
.site-nav a:hover { color: var(--blue); opacity: 1; }
.header-cta { display: inline-flex; }

/* --- hero ---------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, #d9f0f8, var(--bg));
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-block: 80px;
}
.badge {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-weight: 800;
  font-size: 15px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  transform: rotate(-2deg);
}
.hero h1 { font-size: 60px; line-height: 1.15; margin: 0 0 20px; }
.hl {
  background: var(--blue);
  color: #fff;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero p { font-size: 20px; line-height: 1.6; color: var(--muted); margin: 0 0 36px; max-width: 480px; }
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.price-tag { font-family: var(--font-head); font-size: 26px; color: var(--orange); }

/* hero mockups */
.hero__art { position: relative; }
.mock-stage { position: relative; height: 380px; }
.floating-note {
  position: absolute; top: -22px; left: -18px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-family: var(--font-head);
  font-size: 22px;
  padding: 12px 20px;
  border-radius: var(--radius);
  transform: rotate(4deg);
}
.mock-browser {
  position: absolute; top: 0; right: 0; width: 88%;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 8px 8px 0 var(--blue);
}
.mock-chrome {
  height: 26px; background: #e9eef2;
  border-bottom: 2px solid var(--ink);
  display: flex; align-items: center; gap: 5px;
  padding: 0 12px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: block; }
.dot--r { background: var(--orange); }
.dot--y { background: var(--yellow); }
.dot--g { background: var(--wa); }
.mock-phone {
  position: absolute; bottom: 0; left: 0; width: 118px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 0 var(--yellow);
}

/* --- generic section heads ---------------------------------------------- */
.section h2 { font-size: 40px; margin: 0 0 8px; }
.section .lead { color: var(--muted); font-size: 18px; margin: 0 0 32px; }
.accent-blue { color: var(--blue); }
.accent-yellow { color: var(--yellow); }

/* --- templates ----------------------------------------------------------- */
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tpl-card {
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease;
}
.tpl-card:hover { transform: translateY(-6px); }
.tpl-card--blue   { box-shadow: 5px 5px 0 var(--blue); }
.tpl-card--orange { box-shadow: 5px 5px 0 var(--orange); }
.tpl-card--yellow { box-shadow: 5px 5px 0 var(--yellow); }
.tpl-card--teal   { box-shadow: 5px 5px 0 #2f8f83; }
.tpl-card--gold   { box-shadow: 5px 5px 0 #cbb26a; }

.tpl-preview {
  position: relative;
  height: 230px;
  background: #f2f5f8;
  padding: 16px;
}
.tpl-foot {
  padding: 16px 22px;
  border-top: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tpl-foot strong { font-weight: 800; font-size: 17px; }
.pill {
  font-size: 13px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}

/* nested mini-mockups inside template previews */
.mini-browser {
  position: absolute; top: 14px; right: 14px; left: 60px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
}
.mini-chrome {
  height: 16px; background: #e9eef2;
  border-bottom: 1.5px solid var(--ink);
  display: flex; align-items: center; gap: 4px; padding: 0 8px;
}
.mini-chrome .dot { width: 5px; height: 5px; }
.mini-phone {
  position: absolute; bottom: 12px; left: 14px; width: 64px;
  border: 1.5px solid var(--ink);
  border-radius: 11px;
  overflow: hidden;
}
.tpl-note { text-align: center; color: var(--muted); font-size: 17px; padding-top: 28px; }

/* --- process (dark) ------------------------------------------------------ */
.process { background: var(--ink); color: var(--bg); }
.process h2 { color: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 28px;
}
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 24px; color: #fff;
}
.step:nth-child(1) .step__num { background: var(--blue); }
.step:nth-child(2) .step__num { background: var(--orange); }
.step:nth-child(3) .step__num { background: var(--yellow); color: var(--ink); }
.step h3 { font-weight: 800; font-size: 20px; margin: 16px 0 8px; }
.step p { color: #b8c2cd; font-size: 16px; line-height: 1.6; margin: 0; }

/* --- pricing ------------------------------------------------------------- */
.pricing { text-align: center; }
.price-card {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 48px 80px;
  box-shadow: 10px 10px 0 var(--yellow);
}
.price-card .kicker { font-weight: 800; letter-spacing: 2px; color: var(--blue); font-size: 16px; }
.price-card .amount { font-family: var(--font-head); font-size: 96px; line-height: 1.1; }
.price-card .desc { color: var(--muted); font-size: 18px; max-width: 460px; line-height: 1.6; margin: 8px auto 28px; }

/* --- testimonials -------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
}
.quote:nth-child(odd)  { transform: rotate(-1deg); }
.quote:nth-child(even) { transform: rotate(1deg); }
.stars { color: #ffb800; font-size: 22px; letter-spacing: 3px; }
.quote p { font-size: 17px; line-height: 1.7; margin: 14px 0 18px; }
.quote cite { font-style: normal; font-weight: 800; color: var(--blue); }
.quote:nth-child(2) cite { color: var(--orange); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 920px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px 26px;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--blue); font-size: 22px; }
.faq-item[open] > summary::after { content: "–"; }
.faq-item p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 12px 0 0; }

/* --- contact ------------------------------------------------------------- */
.contact-card {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 8px 8px 0 var(--ink);
}
.contact-card h2 { color: #fff; font-size: 40px; margin: 0 0 12px; }
.contact-card p { font-size: 18px; line-height: 1.6; margin: 0 0 24px; color: #d3ecf5; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--ink);
  font-size: 16px;
  font-family: var(--font-body);
}
.contact-form textarea { resize: none; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink); opacity: .45; }

/* --- footer -------------------------------------------------------------- */
.site-footer { text-align: center; color: var(--muted-2); font-size: 15px; padding: 40px 0; }

/* --- floating whatsapp (desktop) ---------------------------------------- */
.fab-wa {
  position: fixed; bottom: 28px; left: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wa);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px;
  animation: pulseGlow 2.5s infinite;
  z-index: 50;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50%     { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}

/* --- mobile sticky bottom CTA (hidden on desktop) ----------------------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; right: 0; left: 0;
  background: var(--bg);
  border-top: 3px solid var(--ink);
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  z-index: 45;
}
.mobile-cta .btn { flex: 1; padding: 14px; font-size: 17px; box-shadow: var(--shadow-sm); }
.mobile-cta__wa {
  flex: 0 0 50px; width: 50px; height: 50px;
  border-radius: 50%; background: var(--wa);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  animation: pulseGlow 2.5s infinite;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .container { padding-inline: 24px; }
  .site-header { padding: 12px 18px; }
  .site-nav { display: none; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: 44px; gap: 32px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { width: 100%; }
  .mock-stage { height: 320px; max-width: 360px; margin: 0 auto; }

  /* templates become a horizontal swipe rail */
  .tpl-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin-inline: -24px;
    padding-inline: 24px;
  }
  .tpl-card { flex: 0 0 260px; scroll-snap-align: start; }
  .tpl-note { font-size: 14px; }

  .steps  { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .price-card { padding: 32px 24px; display: block; box-shadow: 7px 7px 0 var(--yellow); }
  .price-card .amount { font-size: 64px; }
  .contact-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }
  .contact-card h2 { font-size: 28px; }
  .section h2 { font-size: 28px; }

  .fab-wa { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .price-card .amount { font-size: 56px; }
}
