:root {
  --bg-page: #050818;
  --bg-card: rgba(9, 13, 28, 0.8);
  --bg-card-solid: #0b1023;
  --stroke-card: rgba(255,255,255,0.07);
  --text-main: #ffffff;
  --text-dim: #aeb6d8;
  --accent: #0056ff;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-card: 0 20px 60px rgba(0, 86, 255, 0.18);
  --border-card: 1px solid rgba(255,255,255,0.08);
  --section-max-width: 1150px;
  --section-narrow-width: 1000px;
  font-family: 'Manrope', sans-serif;
}

.service-page {
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

/* מבנה בסיסי */
.section-pad {
  padding: 60px 20px;
}

.container-narrow {
  width: 100%;
  max-width: var(--section-narrow-width);
  margin: 0 auto;
}

/* HERO */
.service-hero-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.service-breadcrumb {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.service-intro {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .service-hero-layout {
    grid-template-columns: 1fr 320px;
    align-items: flex-start;
  }
}

/* תמונה */
.service-image-card {
  background: var(--bg-card-solid);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* קופסת פנייה */
.service-cta-card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
  color: var(--text-main);
}

.service-cta-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.cta-points li {
  position: relative;
  padding-right: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-points li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0,86,255,.35);
  transition: 0.2s ease-in-out;
}

.cta-btn:hover {
  box-shadow: 0 16px 40px rgba(0,86,255,.6);
  transform: translateY(-2px);
}

.cta-note {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 0.7rem;
  text-align: right;
}

/* מה כולל השירות */
.bg-layer {
  background: radial-gradient(circle at 20% 20%, rgba(0,86,255,0.12) 0%, rgba(5,8,24,0) 70%);
}

.section-headline {
  color: var(--text-main);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.includes-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.includes-list li {
  background: var(--bg-card-solid);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.includes-list .checkmark {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* למה איתי */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.2rem 1.4rem;
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.why-card-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-hint-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.why-hint-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.why-hint-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.why-hint-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA אחרון */
.service-final-cta {
  background: radial-gradient(circle at 0% 0%, rgba(0,86,255,0.25) 0%, rgba(5,8,24,0) 70%);
}

.service-final-wrapper {
  background: var(--bg-card-solid);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-final-wrapper {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.final-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.final-sub {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-btn.big {
  font-size: 1rem;
  padding: 1rem 1.3rem;
}

/* רספונסיביות */
@media (max-width: 600px) {
  .service-title {
    font-size: 1.6rem;
  }
  .section-headline {
    font-size: 1.3rem;
  }
  .service-cta-card {
    padding: 1.2rem;
  }
}
