@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;700;800&display=swap');

/* Clickz bright theme (site.css)
   - airy layout
   - soft gradients
   - crisp typography
   - premium cards
*/

:root{
  --bg: #f7fafc;
  --surface: rgba(255,255,255,.78);
  --surfaceSolid: #ffffff;

  --text: #0f172a;     /* slate-900 */
  --muted: #475569;    /* slate-600 */
  --muted2: #64748b;   /* slate-500 */

  --border: rgba(15,23,42,.10);
  --shadow: 0 10px 35px rgba(15,23,42,.08);

  --brand: #2563eb;    /* blue-600 */
  --brand2:#06b6d4;    /* cyan-500 */
  --brand3:#a855f7;    /* purple-500 */

  --radius: 18px;
  --radius2: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(700px 380px at 80% 10%, rgba(6,182,212,.16), transparent 55%),
    radial-gradient(700px 420px at 65% 85%, rgba(168,85,247,.10), transparent 55%),
    var(--bg);
}

[dir="rtl"] body {
  direction: rtl;
  unicode-bidi: embed;
  font-family: 'Noto Sans Hebrew', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* layout helpers */
.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
.section{
  padding: clamp(34px, 5vw, 64px) 0;
}
.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,.14), transparent);
  margin: 28px 0;
}

/* topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .2px;
}
.brand img{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(37,99,235,.18);
}
.nav{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav a:hover{
  background: rgba(37,99,235,.08);
  color: var(--text);
  transform: translateY(-1px);
}
.actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* buttons */
.btn, .lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  color: var(--text);
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover, .lang:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15,23,42,.10);
  border-color: rgba(37,99,235,.22);
  background: rgba(255,255,255,.92);
}
.btn.primary{
  border: 1px solid rgba(37,99,235,.20);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(37,99,235,1), rgba(6,182,212,1));
  box-shadow: 0 16px 32px rgba(37,99,235,.20);
}
.btn.primary:hover{
  box-shadow: 0 20px 38px rgba(37,99,235,.26);
}

/* typography */
h1,h2,h3{
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}
h1{
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
}
h2{
  font-size: clamp(22px, 2.4vw, 32px);
}
h3{
  font-size: 18px;
}
p{
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px 0;
}
.sub{
  color: var(--muted);
  max-width: 820px;
}
.lead{
  font-size: 1.08rem;
  color: var(--muted);
}
.small{
  font-size: .92rem;
  color: var(--muted2);
}

/* hero */
.hero{
  padding: clamp(26px, 4vw, 50px) 0 10px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: start;
}
.hero-card{
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.20), transparent 62%);
  transform: rotate(15deg);
  pointer-events:none;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.14);
  color: #1d4ed8;
  font-weight: 750;
  margin-bottom: 10px;
}

/* badges */
.badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 16px 0 18px 0;
}
.badge{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

/* panels & cards */
.panel{
  padding: 18px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
  border-color: rgba(37,99,235,.20);
}
.card img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10) !important;
}

/* table (pricing) */
.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  margin-top: 18px;
}
.table th, .table td{
  text-align:left;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  color: var(--text);
}

[dir="rtl"] .table th, [dir="rtl"] .table td{
  text-align:right;
}
.table th{
  background: rgba(37,99,235,.06);
  color: #0f172a;
  font-weight: 850;
}
.table tr:last-child td{ border-bottom:none; }
.table tbody tr:hover td{
  background: rgba(6,182,212,.05);
}

/* FAQ accordion (details/summary already in your HTML) */
.accordion{
  margin-top: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
}
details{
  padding: 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
details:last-child{ border-bottom:none; }
summary{
  cursor:pointer;
  list-style:none;
  padding: 16px 18px;
  font-weight: 850;
  color: var(--text);
  position:relative;
}
summary::-webkit-details-marker{ display:none; }
summary::after{
  content:"▾";
  position:absolute;
  right: 18px;
  top: 16px;
  color: rgba(15,23,42,.55);
  transition: transform .18s ease;
}
details[open] summary::after{ transform: rotate(180deg); }
details p{
  margin: 0;
  padding: 0 18px 16px 18px;
  color: var(--muted);
}

/* links */
a{ color: #1d4ed8; }
a:hover{ color: #0f4bdc; }

/* footer */
.footer{
  margin-top: 40px;
  padding: 18px 0 24px 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  color: var(--muted2);
}
.footer a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 650;
}
.footer a:hover{ color: var(--text); }

/* responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; } /* keep it simple for now */
}
@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}
:focus-visible{
  outline: 3px solid rgba(37,99,235,.35);
  outline-offset: 2px;
  border-radius: 12px;
}
