
/* ============================
   Simple RTL Landing Styles
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;600;800&display=swap');

:root{
  --bg1: #15314b;
  --bg2: #0a1f32;
  --card-bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #25D366; /* WhatsApp green */
  --accent-dark: #1ebe57;
  --shadow: 0 10px 30px rgba(16,24,40,.12);
  --radius: 18px;
}

*{box-sizing:border-box}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family:'Heebo', system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans Hebrew", sans-serif;
  background: radial-gradient(1200px 600px at 60% -10%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 60%), 
              linear-gradient(180deg, var(--bg1), var(--bg2));
  color: var(--text);
  direction: rtl;
}

.wrapper{
  min-height: 100%;
  display: grid;
  place-items: start center;
  padding: 40px 16px 80px;
}

.card{
  width: min(900px, 100%);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section{
  padding: 28px 28px;
  text-align: center;
}

.topbar{
  font-size: 16px;
  color: #0f172a;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

.topbar strong{
  font-weight: 800;
}

.headline{
  margin: 10px 0 6px;
  font-size: 20px;
  color: #0f172a;
  font-weight: 700;
}

.subline{
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.cta{
  margin-top: 22px;
}

.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  font-size: 18px;
  border-radius: 999px;
  color: #0b2315;
  background: var(--accent);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37,211,102,.35);
  transition: transform .05s ease, box-shadow .15s ease, background .15s ease;
}

.btn-whatsapp:hover{ background: var(--accent-dark); box-shadow: 0 10px 22px rgba(37,211,102,.45); transform: translateY(-1px); }
.btn-whatsapp:active{ transform: translateY(0); }

.wp-icon{
  width: 28px;
  height: 28px;
}

.whatsapp-mark{
  margin: 22px auto 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #28e16c, #1ebe57 60%);
  box-shadow: 0 14px 30px rgba(37,211,102,.35), inset 0 0 0 10px #fff;
}

.whatsapp-mark img{
  width: 70%;
  height: 70%;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.1));
}

.info{
  font-size: 20px;
  color: #111827;
  line-height: 1.6;
}

.banner{
  width: 100%;
  display: block;
  object-fit: cover;
}

.badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  opacity: .9;
}

.banner-wrap{
  position: relative;
  overflow: hidden;
}

.footer{
  padding: 22px 28px 28px;
  font-size: 12px;
  color: #64748b;
  background: #fafafa;
  border-top: 1px solid #eef2f7;
  text-align: center;
}

@media (max-width: 520px){
  .headline{ font-size: 18px; }
  .info{ font-size: 18px; }
  .btn-whatsapp{ font-size: 16px; padding: 14px 18px; }
}
