/* Arcade Mart – Office Starter Plan styling
   Make sure this file is only loaded for the Starter product
*/

.am-office-plan {
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 40%, #fef4ff 100%);
  border-radius: 18px;
  padding: 24px 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-family: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 16px;
}

.am-office-plan__badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  margin-bottom: 10px;
}

.am-office-plan__header {
  margin-bottom: 18px;
}

.am-office-plan__title {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.am-office-plan__emoji {
  font-size: 20px;
}

.am-office-plan__subtitle {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.am-office-plan__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.am-office-plan__price {
  font-size: 26px;
  font-weight: 700;
  color: #0891b2;
}

.am-office-plan__price span {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 4px;
}

.am-office-plan__tagline {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.am-office-plan__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.am-office-plan__section-title {
  font-size: 16px;
  margin: 0 0 8px;
  color: #111827;
}

.am-office-plan__section-subtitle {
  font-size: 13px;
  margin: 16px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b21a8;
}

.am-office-plan__list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px;
  font-size: 14px;
  color: #374151;
}

.am-office-plan__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.am-office-plan__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ec4899;
}

.am-office-plan__list--compact li {
  margin-bottom: 2px;
}

.am-office-plan__note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.am-office-plan__steps {
  counter-reset: am-steps;
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
  font-size: 14px;
  color: #374151;
}

.am-office-plan__steps li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
}

.am-office-plan__steps li::before {
  counter-increment: am-steps;
  content: counter(am-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ec4899;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.am-office-plan__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding-left: 0;
  margin: 4px 0 10px;
}

.am-office-plan__chips li {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #0f172a;
}

.am-office-plan__cta-box {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px dashed rgba(59, 130, 246, 0.4);
}

.am-office-plan__cta-text {
  font-size: 12px;
  margin: 0 0 4px;
  color: #1f2933;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .am-office-plan {
    padding: 18px 14px 20px;
  }
  .am-office-plan__content {
    grid-template-columns: minmax(0, 1fr);
  }
  .am-office-plan__price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
