:root {
  --navy: #0d2048;
  --navy-mid: #16305f;
  --gold: #d4b05a;
  --gold-soft: #f0e2b8;
  --page: #f4efe4;
  --text: #1a2233;
  --muted: #6b7380;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(13, 32, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Noto Sans Hebrew", system-ui, sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.55;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  background: var(--navy);
  padding-bottom: 28px;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: -52px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #122a58 0%, var(--navy) 100%);
  border: 1px solid rgba(212, 176, 90, 0.45);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: #fff;
}

.seal {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.hero-copy {
  flex: 1 1 220px;
}

.hero-copy p {
  margin: 0 0 16px;
  max-width: 28rem;
  font-size: 1.08rem;
  color: var(--gold-soft);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3e3b0 0%, var(--gold) 100%);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.cta:hover {
  transform: translateY(-1px);
}

.cta-note {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(240, 226, 184, 0.72);
}

.features {
  padding: 36px 20px 48px;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 28px rgba(28, 36, 48, 0.06);
  border-top: 3px solid var(--gold);
}

.card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-seal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 860px) {
  .hero-panel {
    margin-top: -64px;
    padding: 22px 28px;
  }

  .seal {
    width: 132px;
    height: 132px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
