/* ============================================================
   آتلیه کودک نینو — صفحه هزینه و شرایط خدمات (services-page-v3.css)
   طراحی: تمیز، حرفه‌ای، بدون ایموجی
   ============================================================ */

/* ===== هیرو ===== */
.services-hero {
  position: relative;
  padding: 140px 24px 56px;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--white) 100%);
  text-align: center;
}
.services-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}
.services-hero p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0,0,0,.55);
}

/* ===== بخش قیمت ===== */
.pricing-section {
  padding: 0 0 90px;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--beige-light);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-value {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}
.price-note {
  font-size: 13px;
  color: rgba(0,0,0,.5);
}

.pricing-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(0,0,0,.65);
}
.pricing-card-meta strong {
  font-weight: 700;
  color: var(--black);
}

/* هدیه نینو */
.pricing-gift {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(0,0,0,.04);
  border-radius: 12px;
  margin-top: auto;
}
.gift-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 3px 12px;
}
.gift-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(0,0,0,.7);
}

/* ===== قیمت چاپ ===== */
.prints-section {
  max-width: 640px;
  margin: 70px auto 0;
  text-align: center;
}
.prints-section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
}
.prints-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.print-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 20px;
  background: var(--beige-light);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
}
.print-size {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
}
.print-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

/* ===== CTA ===== */
.services-cta {
  max-width: 720px;
  margin: 70px auto 0;
  text-align: center;
  padding: 46px 40px;
  background: var(--beige-light);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
}
.services-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.services-cta p {
  font-size: 15px;
  color: rgba(0,0,0,.65);
  line-height: 1.9;
  margin-bottom: 26px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.services-cta .btn {
  background: var(--black);
  color: var(--white);
}
.services-cta .btn-light {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,.25);
}
.services-cta .btn:hover { opacity: .85; }

/* ===== ریسپانسیو ===== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 768px) {
  .services-hero { padding: 115px 16px 44px; }
  .services-hero h1 { font-size: 30px; }
  .services-hero p { font-size: 14px; }
  .pricing-section { padding: 0 0 60px; }
  .pricing-grid { gap: 14px; padding: 0 16px; }
  .prints-section { margin-top: 56px; padding: 0 16px; }
  .prints-boxes { gap: 12px; }
  .services-cta { margin: 56px 16px 0; padding: 34px 20px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; text-align: center; }
}
