/* Sticky Things – How to Order accordion (native <details>, accessible, no JS) */
.sthto-accordion {
  margin: 14px 0 18px;
  border: 1px solid #dde6ea;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.sthto-accordion .sthto-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #00494e;            /* brand teal */
  background: #f3f8f9;
  list-style: none;
  user-select: none;
  transition: background .15s ease;
}
.sthto-accordion .sthto-summary:hover { background: #e8f1f3; }
.sthto-accordion .sthto-summary:focus-visible {
  outline: 2px solid #54b37f;
  outline-offset: -2px;
}
/* hide the default disclosure triangle (cross-browser) */
.sthto-accordion .sthto-summary::-webkit-details-marker { display: none; }
.sthto-accordion .sthto-summary::marker { content: ""; }

/* custom chevron */
.sthto-accordion .sthto-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #00494e;
  border-bottom: 2px solid #00494e;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.sthto-accordion[open] .sthto-icon { transform: rotate(-135deg); }

.sthto-accordion .sthto-content {
  padding: 16px 20px 18px;
  color: #3a484e;
  font-size: 15px;
  line-height: 1.65;
}
.sthto-accordion .sthto-content > :first-child { margin-top: 0; }
.sthto-accordion .sthto-content > :last-child { margin-bottom: 0; }
.sthto-accordion .sthto-content p { margin: 0 0 14px; }

/* emphasis & links */
.sthto-accordion .sthto-content strong,
.sthto-accordion .sthto-content b { color: #243137; font-weight: 600; }
.sthto-accordion .sthto-content em { color: #46555b; }
.sthto-accordion .sthto-content a {
  color: #00494e;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.sthto-accordion .sthto-content a:hover { color: #54b37f; }

/* lists with branded markers */
.sthto-accordion .sthto-content ul,
.sthto-accordion .sthto-content ol { margin: 4px 0 16px; padding-left: 0; }
.sthto-accordion .sthto-content li {
  list-style: none;
  position: relative;
  padding-left: 38px;
  margin: 0 0 14px;
  line-height: 1.55;
}
.sthto-accordion .sthto-content li:last-child { margin-bottom: 0; }

/* unordered: green dot */
.sthto-accordion .sthto-content ul li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54b37f;
}

/* ordered: numbered teal badge */
.sthto-accordion .sthto-content ol { counter-reset: sthto; }
.sthto-accordion .sthto-content ol li { counter-increment: sthto; min-height: 26px; }
.sthto-accordion .sthto-content ol li::before {
  content: counter(sthto);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #00494e;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
/* step titles in brand teal so each step reads clearly */
.sthto-accordion .sthto-content ol li strong {
  display: inline;
  color: #00494e;
  font-weight: 700;
}

/* highlight the final call-to-action line (e.g. "Get your instant price…") */
.sthto-accordion .sthto-content p:last-of-type:not(:only-of-type) {
  margin-top: 14px;
  padding: 10px 14px;
  background: #f0f7f3;
  border-left: 3px solid #54b37f;
  border-radius: 0 6px 6px 0;
  color: #1f3a33;
  font-weight: 600;
}

/* subtle reveal */
.sthto-accordion[open] .sthto-content {
  animation: sthto-fade .2s ease;
}
@keyframes sthto-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
