* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: #f97015; text-decoration: none; }
a:hover { color: #ff8636; }
button, input, select, textarea { font-family: inherit; }

.btn-fill:hover { background: #ff8636 !important; color: #fff !important; }
.btn-outline:hover { background: #ffffff !important; color: #1a1a1a !important; }
.icon-btn:hover { background: #ff8636 !important; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 315;
  background: #000;
  border-radius: 12px;
  border: 1px solid #333;
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.carousel-slide {
  flex: 0 0 calc(50% - 10px);
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
}

.finish-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  cursor: grab;
  margin-bottom: 64px;
  scrollbar-width: none;
  container-type: inline-size;
}
.finish-carousel::-webkit-scrollbar { display: none; }
.finish-carousel.is-dragging { cursor: grabbing; }
.finish-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.finish-slide {
  flex: 0 0 calc(50cqw - 10px);
  margin: 0;
  min-width: 0;
}
.finish-frame {
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}
.finish-frame img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.finish-slide figcaption {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

details.faq-item { border: 1px solid #e6e6e6; border-radius: 10px; overflow: hidden; background: #fff; }
details.faq-item summary {
  width: 100%;
  background: #fff;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  flex: none;
  color: #f97015;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
details.faq-item[open] summary::after { content: "−"; }
details.faq-item .faq-body { padding: 0 24px 24px; font-size: 16px; line-height: 1.6; color: #555; }

.notice { display: none; background: #143d18; color: #c8f0cc; border-radius: 8px; padding: 12px 14px; margin-bottom: 14px; }
.notice.show { display: block; }

@media (max-width: 700px) {
  .carousel-slide { flex-basis: 100%; }
  .finish-slide { flex-basis: 82cqw; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
  .finish-carousel { scroll-behavior: auto; }
}
