:root {
  --navy: #101c3d;
  --navy-2: #17264d;
  --navy-3: #24345e;
  --gold: #d7ad45;
  --gold-soft: #fff3d6;
  --paper: #fffaf0;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --teal: #0f766e;
  --red: #b42318;
  --line: rgba(16, 28, 61, 0.14);
  --shadow: 0 18px 55px rgba(16, 28, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  line-height: 1.55;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -48px;
  background: var(--white);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  border-bottom: 4px solid var(--gold);
}

.topbar__inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 900;
  font-size: 28px;
}

.eyebrow,
.kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}

.topbar h1,
.section h2,
.hero h2,
.card-body h3,
.limit-card h3,
.rules h3 {
  margin: 0;
  letter-spacing: 0;
}

.topbar h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.hero__copy {
  background: var(--navy-2);
  color: var(--white);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset-inline-start: 28px;
  bottom: 0;
  width: 150px;
  height: 10px;
  background: var(--gold);
}

.hero h2 {
  max-width: 780px;
  font-size: clamp(34px, 7vw, 70px);
  line-height: 1.02;
}

.hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.phone-card {
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.phone-card__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.phone-card__bar span {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold);
  position: relative;
}

.phone-card__bar span::after {
  content: "א";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--navy);
}

.bubble {
  width: fit-content;
  max-width: 92%;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.bubble-user {
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
}

.bubble-adel {
  align-self: flex-end;
  background: var(--gold-soft);
  color: #5f4309;
  border: 1px solid rgba(215, 173, 69, 0.34);
}

.answer-strip,
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.answer-strip {
  margin-top: auto;
}

.answer-strip strong,
.meta-row strong {
  color: var(--teal);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.action-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  min-height: 226px;
  box-shadow: 0 10px 30px rgba(16, 28, 61, 0.08);
}

.action-card:nth-child(5) {
  grid-column: 1 / -1;
}

.accent-teal {
  border-top-color: var(--teal);
}

.accent-ink {
  border-top-color: var(--navy);
}

.accent-red {
  border-top-color: var(--red);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 8px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-body h3,
.limit-card h3,
.rules h3 {
  font-size: 22px;
}

.card-body p {
  margin: 10px 0 0;
}

.prompt {
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.copy-btn {
  min-width: 76px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  background: var(--navy-3);
  outline: 3px solid rgba(215, 173, 69, 0.34);
}

.copy-btn.is-copied {
  background: var(--teal);
}

.section-dark {
  width: 100%;
  max-width: none;
  background: var(--navy);
  color: var(--white);
  padding: 38px max(16px, calc((100% - 1120px) / 2));
}

.section-dark .section-heading,
.section-dark .limits-grid {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.limit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
}

.limit-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.no-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #ffe3df;
  background: rgba(180, 35, 24, 0.38);
  font-size: 28px;
  font-weight: 900;
}

.rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rules article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.rules span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.rules p {
  margin: 10px 0 0;
  color: var(--muted);
}

.compare-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 28, 61, 0.08);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.compare-head div,
.compare-row div {
  padding: 16px;
}

.compare-head div + div,
.compare-row div + div {
  border-inline-start: 1px solid var(--line);
}

.compare-row div:first-child {
  color: var(--red);
  font-weight: 800;
}

.compare-row div:last-child {
  color: var(--teal);
  font-weight: 800;
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line);
}

.trust {
  margin-bottom: 48px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-list p {
  margin: 0;
  background: var(--gold-soft);
  border: 1px solid rgba(215, 173, 69, 0.42);
  border-radius: 8px;
  padding: 18px;
  font-weight: 800;
}

.toast {
  position: fixed;
  inset-inline-start: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy,
  .phone-card,
  .action-card,
  .limit-card,
  .rules article,
  .trust-list p {
    animation: rise 0.5s ease both;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 860px) {
  .hero,
  .cards-grid,
  .limits-grid,
  .rules,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .action-card:nth-child(5) {
    grid-column: auto;
  }

  .action-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .copy-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar__inner,
  .hero,
  .section {
    width: min(100% - 24px, 1120px);
  }

  .topbar__inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .hero {
    margin-top: 18px;
  }

  .hero__copy,
  .phone-card,
  .limit-card,
  .rules article,
  .trust-list p {
    padding: 18px;
  }

  .phone-card {
    min-height: 320px;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row div {
    padding: 12px 14px;
  }

  .compare-row div + div {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
}
