:root {
  --bg-page: #f8f6ef;
  --bg-card: #ffffff;
  --text-main: #3a3323;
  --accent: #b18b2f;           /* זהב חם */
  --accent-bg: rgba(177,139,47,0.08);
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 24px 48px rgba(0,0,0,0.07);
  --font: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-page);
  font-family: var(--font);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}
.hero-inner {
  max-width: 650px;
  margin: 0 auto;
}
.brand-badge {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.brand-name {
  font-size: 2.6rem;
  font-weight: 600;
}
.brand-tag {
  font-size: 1.6rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}
.hero-title {
  margin: 2rem 0 1rem;
  font-size: clamp(1.8rem,2vw + 1rem,2.4rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0 auto 2rem;
  max-width: 40ch;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media(min-width:480px){
  .hero-cta-row { flex-direction: row; }
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary {
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
}
.hero-hint {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* SECTIONS SHARED */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 2rem;
  color: var(--text-main);
}

/* PAIN */
.pain {
  background: #ffffffaa;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}
.pain-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
@media(min-width:600px){
  .pain-grid { grid-template-columns: repeat(3,1fr); }
}
.pain-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 16px 30px rgba(0,0,0,0.04);
  text-align: center;
}
.pain-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.pain-head {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--accent);
}
.pain-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}
.solution-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--accent-bg);
  color: var(--text-main);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}
.solution-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.solution-desc {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* FEATURES */
.features-grid {
  display: grid;
  gap: 1rem;
}
@media(min-width:700px){
  .features-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
.feat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
}
.feat-head {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.feat-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* PRICING */
.pricing {
  background: transparent;
}
.pricing-grid {
  display: grid;
  gap: 1rem;
}
@media(min-width:900px){
  .pricing-grid {
    grid-template-columns: repeat(3,1fr);
  }
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.price-card.highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 32px 60px rgba(0,0,0,0.08);
}
.popular-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-md);
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 1rem;
}
.price-tier {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}
.price-people {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.price-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.price-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.price-cta {
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  display: inline-block;
}
.pricing-hint {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
  max-width: 40ch;
  margin: 1.5rem auto 0;
  line-height: 1.4;
}

/* CONTACT */
.contact {
  background: var(--accent-bg);
}
.contact-sub {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-form {
  background: var(--bg-card);
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
}
.field {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-main);
}
.field span {
  margin-bottom: 0.3rem;
}
.field input {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.8rem;
  font-size: 1rem;
  font-family: inherit;
}
.field input:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.btn-wide {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.7rem;
  text-align: center;
  opacity: 0.7;
  margin-top: 0.75rem;
  line-height: 1.4;
}
.or-line {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 2rem 0 1rem;
}
.wa-button {
  display: block;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
  background: #25d36622;
  color: #075e54;
  font-weight: 600;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #25d36655;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
  padding: 2rem 1rem 4rem;
}
.footer-brand {
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.brand-tag-small {
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-legal {
  font-size: 0.7rem;
  opacity: 0.7;
}

