:root {
    /* צבעי בסיס */
    --color-white: #FFFFFF;
    --color-soft-white: #F7F9FB;
    --color-border: #E3E7EE;

    /* פלטת כחולים */
    --blue-night: #0A1A2F;
    --blue-ocean: #123A5F;
    --blue-sky: #3D6A90;

    /* טקסט */
    --text-main: #0A1A2F;
    --text-muted: #526174;
    --text-light: #8C9AAF;
}

.isaacco-hero-clean {
  background:
    linear-gradient(
      180deg,
      var(--blue-night) 0%,
      #081626 100%
    );
  color: var(--color-white);
  padding: 140px 20px 120px;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Kicker */
.hero-kicker {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Headline */
.isaacco-hero-clean h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--color-white);
}

/* Subtitle */
.isaacco-hero-clean p {
  max-width: 700px;
  margin: 0 auto 42px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-soft-white);
}

/* Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary */
.btn-primary {
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--blue-night);
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Secondary */
.btn-secondary {
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}
