/* ============================================================
   Landing Page Styles (shared across all /*-herzliya LPs)
   ============================================================ */

.lp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAF7F4, #EEE9E2);
  padding: 4rem 0;
  overflow: hidden;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
.lp-hero__content { text-align: right; }
.lp-hero__eyebrow {
  display: inline-block;
  background: #C9956A;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.lp-hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  color: #1C1C1C;
  margin: 0 0 1rem;
  letter-spacing: -1px;
}
.lp-hero h1 em {
  color: #C9956A;
  font-style: normal;
}
.lp-hero__subtitle {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 2rem;
  max-width: 540px;
}
.lp-hero__trust {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}
.lp-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-hero__trust-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9956A;
}
.lp-hero__trust-label {
  font-size: 0.85rem;
  color: #555;
}
.lp-hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Buttons */
.lp-btn-primary {
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.lp-btn-primary:hover { background: #1da851; }
.lp-btn-secondary {
  background: transparent;
  color: #1C1C1C;
  padding: 1rem 2rem;
  border: 2px solid #1C1C1C;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-btn-secondary:hover {
  background: #1C1C1C;
  color: #fff;
}

/* Form */
.lp-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px -20px rgba(28, 28, 28, 0.2);
}
.lp-form-wrap h3 {
  font-size: 1.3rem;
  color: #1C1C1C;
  margin: 0 0 0.5rem;
  text-align: center;
}
.lp-form-wrap p {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin: 0 0 1.5rem;
}
.lp-form-field {
  margin-bottom: 1rem;
}
.lp-form-field label {
  display: block;
  font-size: 0.85rem;
  color: #1C1C1C;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
}
.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus {
  outline: none;
  border-color: #C9956A;
  box-shadow: 0 0 0 3px rgba(201, 149, 106, 0.15);
}
.lp-form-submit {
  width: 100%;
  background: #C9956A;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  font-family: inherit;
}
.lp-form-submit:hover { background: #A87850; }
.lp-form-disclaimer {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Sections */
.lp-section { padding: 4rem 0; }
.lp-section h2 {
  font-size: 2rem;
  color: #1C1C1C;
  margin: 0 0 1rem;
  text-align: center;
}
.lp-section__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

/* Features grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #FAF7F4;
  border-radius: 8px;
}
.lp-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: #C9956A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.lp-feature h3 {
  font-size: 1.15rem;
  color: #1C1C1C;
  margin: 0 0 0.5rem;
}
.lp-feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Stat bar */
.lp-stat-bar {
  background: #1C1C1C;
  color: #fff;
  padding: 3rem 0;
}
.lp-stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.lp-stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9956A;
  display: block;
}
.lp-stat-label { color: #ccc; font-size: 0.95rem; }

/* FAQ */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
}
.lp-faq details {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 0;
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1C1C1C;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::before {
  content: '+';
  position: absolute;
  right: 0;
  color: #C9956A;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
.lp-faq details[open] summary::before { content: '−'; }
.lp-faq p { color: #555; line-height: 1.6; margin-top: 0.75rem; }

/* Disclaimer section */
.lp-disclaimer-section {
  background: #FAF7F4;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #555;
}
.lp-disclaimer-section__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* Final CTA */
.lp-final-cta {
  background: linear-gradient(135deg, #C9956A 0%, #A87850 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.lp-final-cta h2 { color: #fff; font-size: 2.5rem; margin: 0 0 1rem; }
.lp-final-cta p { color: rgba(255,255,255,0.95); font-size: 1.2rem; margin: 0 0 2rem; }
.lp-final-cta .lp-btn-primary { background: #fff; color: #C9956A; }
.lp-final-cta .lp-btn-primary:hover { background: #FAF7F4; }

/* Footer */
.lp-footer {
  background: #1C1C1C;
  color: #ccc;
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
  text-align: center;
}
.lp-footer a { color: #C9956A; text-decoration: none; }
.lp-footer a:hover { text-decoration: underline; }
.lp-footer p { margin: 0.5rem 0; line-height: 1.5; }

/* Mobile */
@media (max-width: 900px) {
  .lp-hero { padding: 2rem 0; min-height: auto; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero h1 { font-size: 2.25rem; }
  .lp-hero__subtitle { font-size: 1.05rem; }
  .lp-hero__trust { gap: 1rem; }
  .lp-hero__trust-num { font-size: 1.2rem; }
  .lp-hero__trust-label { font-size: 0.75rem; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-stat-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .lp-stat-num { font-size: 2rem; }
  .lp-section h2, .lp-final-cta h2 { font-size: 1.75rem; }
  .lp-final-cta { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .lp-hero__ctas { flex-direction: column; }
  .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
  .lp-hero__trust { gap: 0.75rem; }
  .lp-hero__trust-item { width: 47%; }
}
