/* 2D növénykiültetési terv – szolgáltatásoldal */

.pps-page {
  --pps-green: #14532d;
  --pps-green-light: #ecfdf5;
  --pps-border: #e2e8f0;
}

.pps-hero {
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #fafaf9 100%);
  border: 1px solid #bbf7d0;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .pps-hero {
    padding: 2.5rem 2.5rem;
  }
}

.pps-hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .pps-hero h1 {
    font-size: 2.35rem;
  }
}

.pps-hero__sub {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  color: #166534;
  font-weight: 600;
}

.pps-hero__lead {
  margin-top: 1rem;
  max-width: 42rem;
  color: #475569;
  line-height: 1.55;
  font-size: 0.95rem;
}

.pps-hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.pps-btn--primary {
  background: var(--pps-green);
  color: #fff;
}

.pps-btn--primary:hover {
  opacity: 0.92;
}

.pps-btn--secondary {
  background: #fff;
  color: var(--pps-green);
  border: 1px solid #86efac;
}

.pps-btn--secondary:hover {
  background: var(--pps-green-light);
}

.pps-btn--outline {
  background: transparent;
  color: #334155;
  border: 1px solid var(--pps-border);
}

.pps-btn--outline:hover {
  background: #f8fafc;
}

.pps-section {
  margin-top: 2rem;
}

.pps-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.pps-section__lead {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 42rem;
}

.pps-section__lead--muted {
  margin-top: -0.25rem;
  color: #64748b;
  max-width: 44rem;
}

.pps-diy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pps-diy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pps-diy-card {
  background: #fff;
  border: 1px solid var(--pps-border);
  border-radius: 1rem;
  padding: 1rem;
}

.pps-diy-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
}

.pps-diy-card p {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.pps-info--warn p + p {
  margin-top: 0.75rem;
}

.pps-info {
  border-radius: 1rem;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  padding: 1.25rem 1.5rem;
  color: #1e3a5f;
  line-height: 1.55;
  font-size: 0.9rem;
}

.pps-info--warn {
  border-color: #fde68a;
  background: #fffbeb;
  color: #713f12;
}

.pps-info--pro {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #14532d;
}

.pps-info--pro .pps-info__title {
  font-weight: 700;
  color: #166534;
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.pps-info--pro p {
  margin: 0;
}

.pps-info--pro p + p {
  margin-top: 0.75rem;
}

.pps-packages-note {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.pps-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .pps-packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.pps-package {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--pps-border);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pps-package--featured {
  border-color: #86efac;
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(22, 101, 52, 0.12);
  position: relative;
}

.pps-package__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: #166534;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pps-package h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.pps-package__sub {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
  min-height: 2.5rem;
}

.pps-package__price {
  margin-top: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pps-green);
}

.pps-package__list {
  margin-top: 1rem;
  flex: 1;
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
}

.pps-package__list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pps-package__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.pps-package__cta {
  margin-top: 1rem;
}

.pps-package__cta .pps-btn {
  width: 100%;
  box-sizing: border-box;
}

.pps-checklist {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pps-checklist li {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid var(--pps-border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
  padding-left: 2rem;
  position: relative;
}

.pps-checklist li::before {
  content: '•';
  position: absolute;
  left: 0.75rem;
  color: #16a34a;
  font-weight: 700;
}

.pps-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pps-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pps-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pps-step {
  background: #fff;
  border: 1px solid var(--pps-border);
  border-radius: 1rem;
  padding: 1rem;
}

.pps-step__num {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--pps-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pps-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.pps-step p {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.pps-cta-bottom {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f0fdf4, #fafaf9);
  border: 1px solid #bbf7d0;
}

.pps-cta-bottom h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.pps-cta-bottom p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pps-cta-bottom__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Kezdőoldal promo blokk */
.home-section--plant-plan {
  background: linear-gradient(135deg, #f0fdf4 0%, #fafaf9 100%);
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}

.home-plant-plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-plant-plan {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
