.page-hero-placeholder {
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
}

.page-hero-placeholder img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
}

.package-hero {
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #041912, #0c392b);
  color: #f4f4ec;
}

.package-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.package-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 3px 8px rgba(0, 51, 102, 0.25);
}

.package-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.package-meta span {
  background: rgba(15, 72, 56, 0.65);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: #d9eee5;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 60px 20px 120px;
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
}

.package-grid::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 60px;
  height: 2px;
  background: #d9c7a4;
}

.package-card {
  background: #0a231a;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  text-align: center;
  position: relative;
  border: 1px solid #123528;
  color: #dfe8e3;
}

.package-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 2px;
  height: 60px;
  background: #d9c7a4;
}

.package-card .package-icon {
  width: 60px;
  height: 60px;
  padding: 14px;
  border-radius: 50%;
  background: #f4f9ff;
  display: block;
  margin: 0 auto 16px auto;
}

.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #d7efe4;
}

.package-card p {
  color: #c7d7cf;
  line-height: 1.5;
}


@media (max-width: 700px) {
  .package-grid::after {
    left: 20px;
    right: 20px;
    bottom: 45px;
  }
  .package-card::after {
    bottom: -45px;
    height: 45px;
  }
}

.package-timeline {
  max-width: 1200px;
  margin: -50px auto 80px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.package-timeline .timeline-label {
  text-align: center;
  color: #dfe8e3;
  font-size: 0.95rem;
  position: relative;
  padding-top: 10px;
}

.package-timeline .timeline-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background: #d9c7a4;
}

.package-timeline .timeline-label strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #2f5a3d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deliverables {
  background: #fff;
  margin: 0 auto;
  border-radius: 16px;
  max-width: 1100px;
  padding: 48px 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-bottom: 35px;
}

.deliverables ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.deliverables li {
  background: #f9f4ec;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0dfc4;
}

.knowledge-links {
  max-width: 1100px;
  margin: 20px auto 70px;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.knowledge-grid article {
  padding: 18px;
  border: 1px solid #f0dfc4;
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
}

.knowledge-grid h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.diagnostic-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 40px;
  border-radius: 24px;
  background: #0a231a;
  box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  border: 1px solid #143528;
}

.diagnostic-content h2 {
  margin: 0 0 12px 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #2f2f2f;
}

.diagnostic-content ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
  color: #4a4a4a;
}

.diagnostic-content ul li::before {
  content: "•";
  color: #8fdac4;
  margin-right: 6px;
}

.diagnostic-note {
  margin-top: 14px;
  font-size: 0.96rem;
  color: #2f5a3d;
  font-weight: 600;
}

.diagnostic-card {
  background: linear-gradient(135deg, #08251b, #10382b);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  text-align: center;
  border: 1px solid #1b4d39;
}

.diagnostic-price {
  font-size: 2rem;
  font-weight: 700;
  color: #2f5a3d;
  margin-bottom: 12px;
}

.diagnostic-card p {
  margin-bottom: 18px;
  color: #0f2f2a;
}

.diagnostic-range {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #d6e7de;
}



.cta-panel {
  background: #0b2f22;
  color: #f4f4ec;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  border: 1px solid #144133;
}

.cta-panel p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #d1dfd8;
}

.cta-panel .btn-primary {
  background: var(--secondary-color);
  color: #031712;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 768px) {
  .package-hero .container {
    text-align: center;
  }

  .package-meta {
    justify-content: center;
  }

  .diagnostic-section {
    padding: 28px 20px;
  }
}
.package-timeline .timeline-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 14px;
  background: #d9c7a4;
}
