/* === TIERS SECTION === */
.tiers-section {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}

.tiers-inner { max-width: 1100px; margin: 0 auto; }

.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.5rem;
}

.tier-card {
  background: var(--bg-alt);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-featured {
  background: var(--bg-card);
  border: 1.5px solid var(--accent-dim);
}

.tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--accent);
  color: #0d1117;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-header { margin-bottom: 1.25rem; }

.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.tier-tag {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.tier-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.tier-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tier-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tier-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.tier-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23f0b429' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.tier-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

/* === ALL SERVICES === */
.all-services {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}

.all-services-inner { max-width: 1100px; margin: 0 auto; }

.all-services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 600px;
}

.service-group { margin-bottom: 3.5rem; }

.service-group-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.service-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.service-row-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.service-row-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

.service-row-detail {
  grid-column: 1;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.services-need {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.services-need-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.services-need-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.need-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.need-link:hover { text-decoration: underline; }

/* === FAQ === */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.faq-inner { max-width: 1100px; margin: 0 auto; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.faq-a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === SERVICES CLOSING === */
.services-closing {
  padding: 6rem 2rem;
  text-align: center;
}

.services-closing-inner { max-width: 640px; margin: 0 auto; }

.services-closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 1rem;
}

.services-closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card { border-bottom: 1px solid var(--border); }
  .tier-card:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .page-hero { padding: 5rem 1.5rem 3rem; }
  .tiers-section, .all-services, .faq-section, .services-closing { padding: 4rem 1.5rem; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-price { text-align: left; }
}