:root {
  --teal-dark: #0b5257;
  --teal: #0f7a80;
  --teal-light: #d7f2eb;
  --gold: #f4e443;
  --sand: #f8fafc;
  --ink: #0f2022;
  --gray: #3a4448;
  --border: rgba(15, 122, 128, 0.12);
  --card-shadow: 0 18px 48px rgba(10, 82, 87, 0.14);
  --radius: 20px;

  font-family: "Assistant", "Heebo", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--sand);
  color: var(--ink);
  direction: rtl;
}

.landing-hero {
  width: 100%;
  background: transparent;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  padding-top: 32px;
}

.landing-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.second-screen {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url('./images/A2.jpeg') left center/cover no-repeat,
    #f8f6e3;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem)
    clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.second-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 246, 227, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.second-screen__content {
  max-width: 620px;
  margin-right: clamp(24px, 4vw, 60px);
  margin-left: auto;
  text-align: right;
  position: relative;
  z-index: 1;
  color: #333;
}

.second-screen h2 {
  font-size: clamp(42px, 5vw, 48px);
  color: #005f52;
  margin: 0 0 24px;
  line-height: 1.2;
}

.second-screen p,
.second-screen li {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.7;
  margin: 0 0 16px;
}

.second-screen ul {
  list-style-position: inside;
  padding: 0 10px 0 0;
  margin: 12px 0 24px;
}

.second-screen li {
  font-size: 22px;
}

.second-screen__cta {
  font-size: clamp(26px, 3vw, 30px);
  color: #7d8b00;
  font-weight: 800;
  margin: 28px 0 0;
}

.third-screen {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 34, 33, 0.35) 0%, rgba(0, 34, 33, 0.65) 100%),
    url('./images/A3.jpeg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: clamp(160px, 18vw, 220px) 1.5rem 120px;
  overflow: hidden;
}

.third-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(0, 75, 64, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(0, 75, 64, 0.28) 0%, rgba(0, 75, 64, 0.55) 100%);
  pointer-events: none;
}

.third-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.third-content h2 {
  font-size: clamp(42px, 5vw, 48px);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.third-content .intro {
  font-size: clamp(20px, 2.6vw, 24px);
  margin: 0 0 30px;
  line-height: 1.7;
  max-width: 880px;
}

.cards {
  display: flex;
  gap: clamp(20px, 3vw, 28px);
  margin: 0 0 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: rgba(0, 0, 0, 0.25);
  padding: 22px 20px;
  border-radius: 12px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 240px;
  backdrop-filter: blur(2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.card h3 {
  color: #c8d400;
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.third-content .prompt {
  font-size: clamp(22px, 2.6vw, 26px);
  margin: 8px 0 4px;
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: #c8d400;
  color: #004b40;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  box-shadow: 0 12px 32px rgba(200, 212, 0, 0.28);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 212, 0, 0.34);
  background: #d5e200;
}

.cta-btn:focus-visible {
  outline: 3px solid rgba(200, 212, 0, 0.5);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .third-screen {
    padding: clamp(140px, 24vw, 200px) 1.25rem 90px;
  }

  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .third-content h2 {
    font-size: clamp(34px, 9vw, 38px);
  }

  .third-content .intro,
  .card p,
  .cta-btn,
  .third-content .prompt {
    font-size: 0.82em;
  }

  .cards {
    flex-direction: column;
  }
}

.floating-admin-bubble {
  position: fixed;

  /* עדכון מיקום — מעט יותר שמאלה ויותר למעלה */
  top: clamp(150px, 24vh, 230px);
  left: clamp(60px, 10vw, 220px);

  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(15, 122, 128, 0.12);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 22px 60px rgba(10, 82, 87, 0.16);
  padding: 1.3rem 1.5rem;
  width: min(340px, 92vw);

  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}




.floating-admin-bubble__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
}

.floating-admin-bubble__text {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 500;
}

.floating-admin-bubble__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.floating-admin-bubble .btn,
.floating-admin-bubble .btn-google {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.floating-admin-bubble .btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 30px rgba(15, 122, 128, 0.22);
}

@media (max-width: 900px) {
  .floating-admin-bubble {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    border-radius: calc(var(--radius) + 4px);
  }
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.hero-visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 22px 58px rgba(10, 82, 87, 0.2);
  background: #fff;
}

.hero-visual img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(15, 122, 128, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 122, 128, 0.08);
}

.brand__logo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
  background: transparent;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-nav {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.inline-login {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f3f7fb);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 0.55rem;
  box-shadow: 0 10px 24px rgba(15, 122, 128, 0.12);
  max-width: 380px;
}

.inline-login input {
  border: none;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  font-size: 1rem;
  color: var(--ink);
}

.inline-login input::placeholder {
  color: var(--gray);
}

.inline-login input:focus-visible {
  outline: 2px solid var(--teal-dark);
  background: #ffffff;
}

.pill-button {
  border: none;
  background: var(--teal-dark);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 122, 128, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 122, 128, 0.22);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}

.hero {
  background: rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  display: grid;
  gap: 1.1rem;
}

.hero__overline {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  color: var(--ink);
  line-height: 1.35;
}

.hero__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(15, 122, 128, 0.18);
}

.pill--accent {
  background: var(--gold);
  border-color: rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 122, 128, 0.08);
}

.feature-card--outlined {
  border-color: rgba(244, 228, 67, 0.35);
  background: linear-gradient(135deg, rgba(244, 228, 67, 0.15), #fff);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.login-panel {
  position: sticky;
  top: 1.25rem;
  align-self: flex-start;
  background: linear-gradient(150deg, #0f7a80, #13a8b8);
  color: #f6f2e6;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}

.login-panel__header h2 {
  margin: 0.1rem 0 0.3rem;
  font-size: 1.5rem;
}

.login-panel__eyebrow {
  margin: 0;
  letter-spacing: 0.4px;
  color: #f4e443;
  font-weight: 700;
}

.login-panel__sub {
  margin: 0;
  color: #e7f7f6;
  line-height: 1.6;
}

.login-panel__hint {
  margin: 0;
  color: #d4ecea;
  line-height: 1.5;
}

.login-panel__hint--inline {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.login-panel__status {
  min-height: 1.3rem;
  font-weight: 700;
  color: #f4e443;
}

.login-panel__status--error {
  color: #ffb3b3;
}

.login-panel__status--success {
  color: #c4ffb9;
}

.login-panel__footnote {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
  color: #f8f1e6;
  line-height: 1.5;
}

.login-form {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.input-label {
  color: #e7f7f6;
  font-weight: 700;
  font-size: 0.95rem;
}

.text-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
}

.text-input::placeholder {
  color: #bcdad7;
}

.text-input:focus-visible {
  outline: 2px solid #f4e443;
  background: rgba(255, 255, 255, 0.16);
}

.btn-full {
  width: 100%;
  margin-top: 0.2rem;
}

.login-panel__divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.9rem 0 0.6rem;
  color: #d7ecea;
}

.login-panel__divider-line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.35);
}

.login-panel__divider-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-google {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #113f47;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-google svg {
  width: 20px;
  height: 20px;
}

.btn-google:hover,
.btn-google:focus-visible {
  background: #f4f8ff;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.highlight-email {
  color: #f4e443;
}

.section {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 1.4rem;
}

.section--muted {
  background: #f3f7f6;
}

.section--highlight {
  background: linear-gradient(135deg, var(--teal), #0c6469);
  color: #f6f2e6;
  border: none;
}

.section__header {
  display: grid;
  gap: 0.35rem;
}

.section__header--compact {
  gap: 0.2rem;
}

.section__eyebrow {
  margin: 0;
  font-weight: 700;
  color: var(--teal-dark);
}

.section--highlight .section__eyebrow {
  color: #f4e443;
}

.section__header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.section__content {
  display: grid;
  gap: 1.25rem;
}

.section__content--split {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.section__text p {
  margin-top: 0;
  line-height: 1.7;
  color: var(--gray);
}

.section__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.stat {
  margin-top: 1rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.stat__number {
  font-size: 1.4rem;
  font-weight: 800;
}

.stat__label {
  margin: 0;
  line-height: 1.4;
}

.list {
  padding-right: 1rem;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.35rem;
  color: var(--gray);
}

.list--compact {
  gap: 0.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 122, 128, 0.08);
  position: relative;
  overflow: hidden;
}

.step__badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), #0c6469);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pricing__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.5rem;
}

.pricing__card--accent {
  background: linear-gradient(135deg, rgba(244, 228, 67, 0.2), #fff);
  border-color: rgba(244, 228, 67, 0.6);
}

.pricing__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.pricing__note {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.faq__item h3 {
  margin: 0 0 0.35rem;
}

.faq__item p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
}

.join {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  color: #fdfbf5;
}

.join__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.join__note {
  color: #fdfbf5;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #f4e443;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.section--highlight .cta {
  background: #fff;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .login-panel {
    order: -1;
    position: relative;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 1.25rem 1rem 3rem;
  }

  .top-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section,
  .login-panel {
    padding: 1.5rem 1.25rem;
  }
}
