html {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(120deg, #f8f1e3 60%, #f3e7d9 100%);
}
body {
  font-family: 'Heebo', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
  background: none;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg width="100vw" height="100vh" viewBox="0 0 1920 1080" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="300" cy="200" r="90" fill="%23f3e7d9" fill-opacity="0.45"/><circle cx="1600" cy="300" r="120" fill="%234a90a4" fill-opacity="0.13"/><circle cx="900" cy="900" r="110" fill="%23f8f1e3" fill-opacity="0.35"/><circle cx="1400" cy="800" r="70" fill="%234a90a4" fill-opacity="0.09"/><circle cx="500" cy="800" r="60" fill="%234a90a4" fill-opacity="0.11"/></svg>');
  background-size: cover;
  animation: bubbles-move 18s linear infinite alternate;
}
@keyframes bubbles-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 10% 8%;
  }
}
body > * {
  position: relative;
  z-index: 1;
}
.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: env(safe-area-inset-top);
}
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem 0 2rem;
}
.main-content {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4a90a4;
  position: relative;
  margin-bottom: 0.2em;
  line-height: 1.2;
  text-shadow: 0 2px 8px #fff8, 0 1px 0 #fff;
  letter-spacing: -1px;
}
.title .brand {
  color: #4a90a4;
}
.title .sketch {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 120%;
  z-index: -1;
  opacity: 0.5;
}
.subtitle {
  font-size: 2.8rem;
  color: #4a90a4;
  font-weight: 700;
  text-shadow: 0 2px 8px #fff8, 0 1px 0 #fff;
  margin-bottom: 0.5em;
}
.subtitle-highlight {
  background: rgba(74, 144, 164, 0.13);
  color: #23647a;
  padding: 0.25em 1.1em;
  border-radius: 2em;
  box-shadow: 0 2px 12px #0001;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
}
.store-badges {
  display: flex;
  gap: 0;
  margin-bottom: 1em;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-right: -2rem;
}
.store-badges img:first-child {
  margin-left: -2rem;
}
.store-badges img {
  height: 10rem;
  width: auto;
  cursor: pointer;
  border-radius: 0;
  box-shadow: none;
  background: none;
  padding: 0;
}
.store-badges img:hover {
  /* אין שינוי */
}
.mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0;
  min-width: 17rem;
  min-height: 34rem;
  max-width: 22rem;
  max-height: 44rem;
  border-radius: 0;
  background: none;
}
.mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.footer {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #222;
  background: none;
  margin: 10rem 0 1rem 0;
}
.footer nav {
  display: inline-block;
}
.footer a {
  color: #222;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer a:hover {
  color: #4a90a4;
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0.5rem 0 0.5rem;
  }
  .main-content {
    align-items: center;
    text-align: center;
  }
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.8rem;
  }
  .mockup {
    min-width: 12rem;
    min-height: 20rem;
    max-width: 16rem;
    max-height: 28rem;
    padding: 0.7rem 0.2rem;
  }
  .store-badges {
    margin-right: -1rem;
  }
  .store-badges img {
    height: 7rem;
  }
  .footer {
    margin-top: 5rem !important;
  }
}
@media (max-width: 600px) {
  .container {
    gap: 1rem;
    padding: 0.5rem 0.2rem 0 0.2rem;
  }
  .footer {
    font-size: 0.95rem;
    margin: 1.2rem 0 0.5rem 0;
  }
} 