/* =====================================================
   פסגת דנטה — שירותי משרד מרחוק
   Mobile-first, RTL, premium warm style
   Edit brand colors here:
===================================================== */
:root {
  --navy: #16263f;          /* primary brand — deep navy */
  --navy-soft: #1f3454;     /* lighter navy for cards on dark */
  --cream: #faf6ee;         /* warm page background */
  --cream-deep: #f3ecdd;    /* slightly deeper cream for alternating sections */
  --gold: #c19a5b;          /* caramel / gold accent */
  --gold-dark: #a87f3f;
  --ink: #22293a;           /* main text on light */
  --ink-soft: #4d566b;      /* secondary text on light */
  --white: #ffffff;
  --wa: #25d366;            /* WhatsApp green */
  --wa-dark: #1ebe5b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 28px rgba(22, 38, 63, 0.10);
  --shadow-soft: 0 4px 14px rgba(22, 38, 63, 0.07);
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  /* room for the sticky mobile CTA bar */
  padding-bottom: 64px;
}

img, video { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 20px;
}

/* ============ Typography ============ */
h1, h2, h3 { line-height: 1.3; color: var(--navy); font-weight: 700; }

h1 { font-size: 1.7rem; font-weight: 800; }

.section-title { font-size: 1.55rem; margin-bottom: 14px; }

.section-lead {
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 28px;
}

.section { padding: 56px 0; }

.section-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-soft); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }

.btn-ghost { background: transparent; color: var(--navy); text-decoration: underline; }
.btn-ghost:hover { box-shadow: none; }

.btn-whatsapp { background: var(--wa); color: var(--white); }
.btn-whatsapp:hover { background: var(--wa-dark); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22, 38, 63, 0.08);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
}

.brand-logo img { width: 44px; height: 44px; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.brand-tagline { color: var(--gold-dark); font-size: .8rem; font-weight: 500; }

.btn-header { padding: 9px 16px; font-size: .9rem; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 40px 0 48px;
  overflow: hidden;
}

.hero-inner { display: grid; gap: 28px; }

.hero-eyebrow {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.hero-sub { color: var(--ink-soft); margin: 16px 0 24px; font-size: 1.05rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.hero-bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-weight: 500;
  color: var(--navy);
  font-size: .95rem;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.hero-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  max-width: 460px;
  margin-inline: auto;
}

.hero-figure img { width: 100%; object-fit: cover; aspect-ratio: 7 / 8; }

/* ============ Trust bar ============ */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.trust-icon { font-size: 1.4rem; line-height: 1; }
.trust-label { font-size: .88rem; opacity: .92; }

/* ============ Problem section ============ */
.pain-grid {
  list-style: none;
  display: grid;
  gap: 14px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border-inline-start: 4px solid var(--gold);
}

.pain-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pain-card p { color: var(--ink-soft); font-size: .95rem; }

/* ============ Services ============ */
.section-services { background: var(--cream-deep); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; }

/* ============ Core message ============ */
.section-core { background: var(--navy); color: var(--white); }

.section-core .section-title { color: var(--white); }

.core-inner { max-width: 760px; }

.core-brand-sentence {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--gold);
  border-inline-start: 4px solid var(--gold);
  padding-inline-start: 18px;
  margin: 22px 0;
}

.core-text { margin-bottom: 14px; opacity: .95; }

.core-list { list-style: none; display: grid; gap: 10px; }

.core-list li {
  position: relative;
  padding-inline-start: 26px;
  opacity: .95;
}

.core-list li::before {
  content: "✦";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
}

/* ============ Why choose us ============ */
.why-inner { display: grid; gap: 28px; }

.why-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  max-width: 380px;
  margin-inline: auto;
}

.why-figure img { width: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

.why-grid { list-style: none; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }

.why-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-card strong { color: var(--navy); font-size: .98rem; }
.why-card span { color: var(--ink-soft); font-size: .85rem; }

/* ============ How it works ============ */
.section-steps { background: var(--cream-deep); }

.steps-grid {
  list-style: none;
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step-card p { color: var(--ink-soft); font-size: .95rem; }

/* ============ Testimonials ============ */
.video-testimonial { margin-bottom: 28px; }

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}

.video-card video { width: 100%; background: var(--navy); aspect-ratio: 16 / 9; }

.video-card figcaption {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
}

.video-card cite, .video-card strong { color: var(--navy); font-style: normal; }
.video-card span { color: var(--gold-dark); font-size: .85rem; }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card p { color: var(--ink); font-size: .97rem; line-height: 1.75; }

.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--cream-deep); padding-top: 12px; }

.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--navy); }
.testimonial-card footer span { color: var(--ink-soft); font-size: .85rem; }
.testimonial-card footer a { color: var(--gold-dark); font-size: .85rem; text-decoration: none; direction: ltr; text-align: end; align-self: flex-start; }
.testimonial-card footer a:hover { text-decoration: underline; }

/* ============ FAQ ============ */
.section-faq { background: var(--cream-deep); }

.faq-inner { max-width: 760px; }

.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-inline-end: 44px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: transform .2s ease;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p { padding: 0 20px 18px; color: var(--ink-soft); }

/* ============ Contact ============ */
.section-contact { background: var(--navy); color: var(--white); }

.section-contact .section-title { color: var(--white); }

.contact-inner { display: grid; gap: 32px; }

.contact-intro p { opacity: .92; margin-bottom: 18px; }

.contact-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 22px; }
.contact-trust li { color: var(--gold); font-weight: 500; font-size: .95rem; }

.contact-direct { display: flex; flex-wrap: wrap; gap: 12px; }

.contact-form {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: grid;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label { font-weight: 600; font-size: .92rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { resize: vertical; min-height: 96px; }

.btn-submit { width: 100%; border: none; }

.form-status { min-height: 1.4em; font-weight: 500; font-size: .95rem; }
.form-status.is-success { color: #8be3a8; }
.form-status.is-error { color: #ffb3a7; }

.hidden-field { display: none !important; }

/* ============ Final CTA ============ */
.section-final-cta { background: var(--cream-deep); text-align: center; }

.section-final-cta p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 26px; }

.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 36px 0 28px;
}

.footer-inner { display: grid; gap: 18px; }

.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-brand strong { font-size: 1.15rem; color: var(--gold); }
.footer-brand span { opacity: .85; font-size: .92rem; }

.footer-details { list-style: none; display: grid; gap: 6px; font-size: .92rem; opacity: .9; }
.footer-details a { color: var(--white); text-decoration: none; }
.footer-details a:hover { color: var(--gold); }

.footer-copy { font-size: .8rem; opacity: .6; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 60;
  display: flex;
  background: var(--white);
  box-shadow: 0 -4px 18px rgba(22, 38, 63, 0.18);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 6px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}

.sticky-call { background: var(--navy); color: var(--white); }
.sticky-meet { background: var(--gold); color: var(--white); }
.sticky-wa { background: var(--wa); color: var(--white); }

/* =====================================================
   Tablet and up
===================================================== */
@media (min-width: 700px) {
  body { padding-bottom: 0; }

  /* sticky bar is mobile-only */
  .sticky-cta { display: none; }

  h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .section { padding: 76px 0; }

  .hero { padding: 64px 0 72px; }
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 48px; }

  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }

  .why-inner { grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; }

  .contact-inner { grid-template-columns: 1fr 1.1fr; align-items: start; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr 1.5fr; align-items: start; }
  .footer-copy { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Accessibility ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .service-card { transition: none; }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
